fix: use process.exit(1) on error
This commit is contained in:
parent
b0e73e7b58
commit
1b4235d99f
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ export async function validateIntegrations(integrations: string[]): Promise<Inte
|
|||
} catch (e) {
|
||||
if (e instanceof Error) {
|
||||
spinner.fail(e.message);
|
||||
process.exit(0);
|
||||
process.exit(1);
|
||||
} else {
|
||||
throw e;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue