1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #4181 from node-red/4122-exit-codes

Ensure non-zero exit codes for errors
This commit is contained in:
Nick O'Leary 2023-05-22 16:39:22 +01:00 committed by GitHub
commit 1a149592d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -148,7 +148,7 @@ try {
} else { } else {
console.log(err); console.log(err);
} }
process.exit(); process.exit(1);
} }
if (parsedArgs.define) { if (parsedArgs.define) {
@ -182,7 +182,7 @@ if (parsedArgs.define) {
} }
} catch (e) { } catch (e) {
console.log("Error processing -D option: "+e.message); console.log("Error processing -D option: "+e.message);
process.exit(); process.exit(1);
} }
} }