We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It calls
throw PrintCompletionMessage(message)
which is a PrintMessage
PrintMessage
class PrintCompletionMessage(message: String) : PrintMessage(message)
which now defaults to exit code 1 for some reason, even if error is false?
open class PrintMessage( message: String, statusCode: Int = 1, printError: Boolean = false, ) : CliktError(message, statusCode = statusCode, printError = printError)
The text was updated successfully, but these errors were encountered:
I'd be happy to submit a PR changing the default to 0, but I'm not sure what all the side effects would be, so I figured I'd make an issue first :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It calls
which is a
PrintMessage
which now defaults to exit code 1 for some reason, even if error is false?
The text was updated successfully, but these errors were encountered: