From 31f20055a077cd5fdfb0e1d17b5d53ba6ca4d016 Mon Sep 17 00:00:00 2001 From: Moshe Atlow Date: Thu, 27 Oct 2022 21:56:19 +0300 Subject: [PATCH] fix: add missing await --- bin/ncu-ci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ncu-ci.js b/bin/ncu-ci.js index d0fd8bf1..0d013ac9 100755 --- a/bin/ncu-ci.js +++ b/bin/ncu-ci.js @@ -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; }