Skip to content

Commit e62f9e2

Browse files
committed
fix: missing await calls
1 parent 34980f1 commit e62f9e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/cmds/docker_cmds/release.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import { handler as pushHandler } from './push.js';
99

1010
export const command = 'release';
1111
export const desc = 'performs build, tagging and push in one operation';
12-
export const handler = (argv) => {
12+
export const handler = async (argv) => {
1313
dockerHandler(argv);
14-
buildHandler(argv);
15-
tagHandler(argv);
16-
pushHandler(argv);
14+
await buildHandler(argv);
15+
await tagHandler(argv);
16+
await pushHandler(argv);
1717
};

0 commit comments

Comments
 (0)