Skip to content

Commit 34980f1

Browse files
committedDec 27, 2023
fix: docker push cmd
1 parent c94f8fc commit 34980f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bin/cmds/docker_cmds/push.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ export const handler = async (argv) => {
1313

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

0 commit comments

Comments
 (0)
Please sign in to comment.