We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c2d8b5 commit ea6a04cCopy full SHA for ea6a04c
2 files changed
src/encapsulation/cp.utilities.ts
@@ -35,7 +35,7 @@ export abstract class CPUtilities {
35
}
36
// eslint-disable-next-line no-console
37
console.error(ChalkUtilities.error(`Command failed: ${command}`));
38
- process.exit(0);
+ process.exit(1);
39
40
41
src/utilities/exit-with-error.function.ts
@@ -11,5 +11,5 @@ export function exitWithError(message: string): never {
11
console.error(ChalkUtilities.error(message));
12
13
console.log(MORE_INFORMATION_MESSAGE);
14
- return process.exit(0);
+ return process.exit(1);
15
0 commit comments