Output help instead of an error

This commit is contained in:
4G3NT 2023-06-17 04:37:45 -07:00 committed by GitHub
parent ed9141853f
commit 5aeaec7551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ shift $((OPTIND - 1))
msg="$1"
[ -z "$msg" ] && [ "$#" -eq 0 ] && {
err "a message needs to be specified"
echo "$help"
exit 1
}