Skip to content

Commit

Permalink
trully fixing deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
5jiji committed Oct 27, 2023
1 parent dc600a8 commit 4bbe13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dos/commands/deployCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
});

Expand Down

0 comments on commit 4bbe13a

Please sign in to comment.