Skip to content

Commit

Permalink
fix: add missing await (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
MoLow committed Oct 27, 2022
1 parent 04d513d commit 7e4dc88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ncu-ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class RunPRJobCommand {
return;
}
const jobRunner = new RunPRJob(cli, request, owner, repo, prid);
if (!jobRunner.start()) {
if (!(await jobRunner.start())) {
this.cli.setExitCode(1);
process.exitCode = 1;
}
Expand Down

0 comments on commit 7e4dc88

Please sign in to comment.