docs: update

This commit is contained in:
Dylan Araps 2019-07-25 01:33:12 +03:00
parent 0d3010b58d
commit 0865856a9c
1 changed files with 7 additions and 3 deletions

10
kiss
View File

@ -995,9 +995,8 @@ args() {
log "kiss 0.5.9"
;;
# Catch all invalid arguments as well as
# any help related flags (-h, --help, help).
*)
# Print usage and exit.
h|he|hel|help|-h|--help)
log "kiss [b|c|d|i|l|r|s|u] [pkg] [pkg] [pkg]" \
"build: Build a package." \
"checksum: Generate checksums." \
@ -1010,6 +1009,11 @@ args() {
"search: Search for a package." \
"update: Check for updates."
;;
# Print message about invalid commands.
*)
die "'kiss $1' is not a valid command."
;;
esac
}