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
--version should return a 0 exit code, currently it returns 1
--version
0
1
--help should return a 0 exit code or 22 which is EINVAL 22 Invalid argument
--help
22
this allows commands that check to see if the command is actually working to do so:
https://github.com/bevry/dorothy/blob/master/commands/command-working
The text was updated successfully, but these errors were encountered:
Thank you. I will work on it for next version.
Sorry, something went wrong.
@balupton Hi, This behavior has been fixed at v1.2.2.
$ teip --version teip 1.2.2 $ echo $? 0 $ teip --help &> /dev/null $ echo $? 0
If you have any other issues, please let me know.
greymd
No branches or pull requests
--version
should return a0
exit code, currently it returns1
--help
should return a0
exit code or22
which is EINVAL 22 Invalid argumentthis allows commands that check to see if the command is actually working to do so:
https://github.com/bevry/dorothy/blob/master/commands/command-working
The text was updated successfully, but these errors were encountered: