kiss: split usage

This commit is contained in:
Dylan Araps 2020-09-08 17:07:55 +03:00
parent 6ba7b61bfb
commit e2b292bc0b
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 7 additions and 3 deletions

10
kiss
View File

@ -1498,7 +1498,7 @@ args() {
s|search) for pkg do pkg_find "$pkg" all; done ;;
v|version) printf '5.0.6\n' ;;
-h|--help|'')
'')
log 'kiss [a|b|c|d|i|l|r|s|u|v] [pkg]...'
log 'alternatives List and swap to alternatives'
log 'build Build a package'
@ -1509,8 +1509,12 @@ args() {
log 'remove Remove a package'
log 'search Search for a package'
log 'update Update the system'
log 'version Package manager version
'
log 'version Package manager version'
printf '\nRun "kiss help-ext" to see all actions\n'
;;
help-ext)
log 'Installed extensions (kiss-* in PATH)'
# shellcheck disable=2046