fix: forgot await

This commit is contained in:
Vyacheslav Matyukhin 2022-03-29 21:47:11 +03:00
parent a3eea5a98e
commit 0c9e577319
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -43,7 +43,7 @@ let commandLineUtility = async () => {
return answer;
};
executeJobByName(await pickOption());
await executeJobByName(await pickOption());
process.exit();
};