diff --git a/src/dos/commands/deployCommands.ts b/src/dos/commands/deployCommands.ts index 846893e..e3a2df0 100755 --- a/src/dos/commands/deployCommands.ts +++ b/src/dos/commands/deployCommands.ts @@ -14,7 +14,7 @@ class DeployCommands extends DOSCommands { e.forEach(e => { const betaStatus = e.beta ?? false; const enable = e.enable ?? true; - if (!pushBetaCommands && betaStatus && enable || enable && !betaStatus) all.push(e.data) + if ((enable && !betaStatus) || (enable && betaStatus && pushBetaCommands)) all.push(e.data) }) });