Skip to content

Commit

Permalink
fix: docker push cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
AVVS committed Dec 27, 2023
1 parent c94f8fc commit 34980f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cmds/docker_cmds/push.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export const handler = async (argv) => {

for (const tag of [mainTag, ...tags]) {
// eslint-disable-next-line no-await-in-loop
await $({ stdio: 'inherit' })`'docker push ${tag}`;
await $({ stdio: 'inherit' })`docker push ${tag}`;
}
};

0 comments on commit 34980f1

Please sign in to comment.