1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-09 09:51:02 +01:00

set exit code instead of exiting

This commit is contained in:
Kyle Spearrin 2018-06-20 14:42:21 -04:00
parent 2418e200ed
commit 6fbcfcad7b
2 changed files with 4 additions and 4 deletions

2
jslib

@ -1 +1 @@
Subproject commit e5db01083cc13df3696bb30562a83d729280ac03
Subproject commit d75543e6c88b220d8e3c7d66fb768d39f9480587

View File

@ -70,7 +70,7 @@ export class Program {
program.on('command:*', () => {
writeLn(chalk.redBright('Invalid command: ' + program.args.join(' ')));
writeLn('See --help for a list of available commands.', true);
process.exit(1);
process.exitCode = 1;
});
program.on('--help', () => {
@ -502,7 +502,7 @@ export class Program {
writeLn(chalk.redBright(response.message), true);
}
}
process.exit(1);
process.exitCode = 1;
return;
}
@ -529,7 +529,7 @@ export class Program {
writeLn(out, true);
}
}
process.exit();
process.exitCode = 0;
}
private getJson(obj: any): string {