Skip to content

Commit ed011d5

Browse files
committedOct 27, 2022
fix: add missing await (#655)
1 parent 00187bc commit ed011d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bin/ncu-ci.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ class RunPRJobCommand {
286286
return;
287287
}
288288
const jobRunner = new RunPRJob(cli, request, owner, repo, prid);
289-
if (!jobRunner.start()) {
289+
if (!(await jobRunner.start())) {
290290
this.cli.setExitCode(1);
291291
process.exitCode = 1;
292292
}

0 commit comments

Comments
 (0)
Please sign in to comment.