diff options
author | merakor <cem@ckyln.com> | 2020-05-13 19:51:21 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-05-13 19:51:21 +0000 |
commit | c68dffa6c42334cfa939fb21a5430a35abff08c0 (patch) | |
tree | 851e5fc23981c030ecaebe53cd100a2f1edd4964 /contrib/kiss-reporevdepends | |
parent | 77cf1dab6537557b5ae43e1aee76972f87c829c0 (diff) | |
download | cpt-c68dffa6c42334cfa939fb21a5430a35abff08c0.tar.gz |
contrib: use --help and -h for usage information
FossilOrigin-Name: 43f55b077d3feb3e4bc42d72a58cadedbe7f387cedf01d2e59308c35f6afb484
Diffstat (limited to 'contrib/kiss-reporevdepends')
-rwxr-xr-x | contrib/kiss-reporevdepends | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/kiss-reporevdepends b/contrib/kiss-reporevdepends index 1a83c33..59262f0 100755 --- a/contrib/kiss-reporevdepends +++ b/contrib/kiss-reporevdepends @@ -2,10 +2,7 @@ # Display packages on the repository which depend on package # shellcheck disable=2086 -[ "$1" ] || { - printf 'usage: %s <pkg>\n' "${0##*/}" - exit 1 -} +case "$1" in ''|--help|-h) printf 'usage: %s <pkg>\n' "${0##*/}"; exit 0; esac pkg="$1" IFS=:; set -- $KISS_PATH; unset IFS |