-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Properly return a 1 when a threshold is not met #3299
Conversation
Signed-off-by: Will <will@dower.dev>
Signed-off-by: Will <will@dower.dev>
Signed-off-by: Will <will@dower.dev>
|
@@ -61,7 +61,8 @@ export abstract class BaseCommand<T extends typeof Command> extends Command { | |||
if (err.message.includes('See more help with --help')) { | |||
this.warn(err.message.replace('--help', `\x1B[93m${process.argv.at(-2)} ${process.argv.at(-1)} -h or --help\x1B[0m`)) | |||
} else { | |||
this.warn(err) | |||
console.error(err.message) | |||
process.exit(1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We tried using this.exit
instead of process
but it dumped the entire stack trace. What we want is a simple error message to stderr and the return code set correctly. Working within oclif
doesn't seem to want to allow this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Until we hear from oclif
I support using this work-around
SAF CLI should exit with code 1 when a threshold is not met to enable other automation to properly handle its output without having to parse stderr.
Resolves #3298