Skip to content

Commit

Permalink
docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Mar 26, 2024
1 parent b5e6d72 commit d896e24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/supersetbot/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ export default function getCLI(context) {
.action(function () {
const opts = context.processOptions(this, ['preset']);
opts.platform = opts.platform || ['linux/arm64'];
const cmd = docker.getDockerCommand({ ...opts });
context.log(cmd);
const command = docker.getDockerCommand({ ...opts });
context.log(command);
if (!opts.dryRun) {
utils.runShellCommand({ cmd, raiseOnError: false });
utils.runShellCommand({ command, raiseOnError: false });
}
});
}
Expand Down

0 comments on commit d896e24

Please sign in to comment.