Skip to content

Commit 4b527a4

Browse files
adrian-nitu-92AndreasMadsen
authored andcommitted
benchmark: update compare.js exit method
Node documentation recommends using process.exitCode = x and returning as a way to exit. PR-URL: #7961 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Andreas Madsen <[email protected]>
1 parent 9e7fd8e commit 4b527a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

benchmark/compare.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ const benchmarks = cli.benchmarks();
3333

3434
if (benchmarks.length === 0) {
3535
console.error('no benchmarks found');
36-
process.exit(1);
36+
process.exitCode = 1;
37+
return;
3738
}
3839

3940
// Create queue from the benchmarks list such both node versions are tested

0 commit comments

Comments
 (0)