diff options
Diffstat (limited to 'contrib/cpt-export')
-rwxr-xr-x | contrib/cpt-export | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/cpt-export b/contrib/cpt-export index 45ab564..9b4edd1 100755 --- a/contrib/cpt-export +++ b/contrib/cpt-export @@ -1,7 +1,13 @@ #!/bin/sh -ef # Turn an installed package into a CPT tarball -case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]" ; exit 0 ; esac +case "$1" in + --help|-h) + printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]" + exit 0 + ;; + '') set -- "${PWD##*/}" +esac cpt-list "${1:-null}" >/dev/null |