Skip to content

Commit

Permalink
[WIP]: show "aborted." if errorCode != 0 on exit.
Browse files Browse the repository at this point in the history
  • Loading branch information
h-sug1no committed Dec 21, 2021
1 parent 3e4ca4f commit 9830cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_images.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const appMain = async () => {
fs.mkdirSync(imageDir, { recursive: true });

const exitCode = await execChildren(backends);
log('done.');
log(exitCode ? 'aborted.' : 'done.');
process.exit(exitCode);
};

Expand Down

0 comments on commit 9830cec

Please sign in to comment.