Skip to content

Commit 4b284db

Browse files
committed
fix(cli): fix not awaiting cli version (#854)
1 parent 9d42cc6 commit 4b284db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/actor-core-cli/src/commands/deploy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const deploy = new Command()
7171

7272
if (cliLocation) {
7373
// check version
74-
const { stdout } = yield* exec`${cliLocation} --version`;
74+
const { stdout } = await exec`${cliLocation} --version`;
7575
const semVersion = semver.coerce(
7676
stdout.split("\n")[2].split(" ")[1].trim(),
7777
);

0 commit comments

Comments
 (0)