Skip to content

Commit

Permalink
fix: CI didn't detect circular reference (#15548)
Browse files Browse the repository at this point in the history
  • Loading branch information
PPpro authored Jun 27, 2023
1 parent d5c1301 commit e6ce807
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ gulp.task('build-h5-source', gulp.series('build-debug-infos', async () => {
});
});
if (exitCode) {
throw new Error(`Build process exit with ${exitCode}`);
console.error(`Build process exit with ${exitCode}`);
process.exit(exitCode);
}
}));

Expand Down

0 comments on commit e6ce807

Please sign in to comment.