diff options
author | merakor <cem@ckyln.com> | 2020-09-05 07:13:28 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-09-05 07:13:28 +0000 |
commit | 26e3b92dce26631a6783eb430326d37a93e62488 (patch) | |
tree | 17f55eaf44a035f068f9b818ff1196c2f58a2a5f /contrib/cpt-size | |
parent | 16d4fd6cbf7835583d46960f96d30b35107e9c74 (diff) | |
download | cpt-26e3b92dce26631a6783eb430326d37a93e62488.tar.gz |
contrib: use current directory if no arguments are given
FossilOrigin-Name: 266bf81edde642e79582487e98140a0539f14c82dd0671eee91b22881cdf62db
Diffstat (limited to 'contrib/cpt-size')
-rwxr-xr-x | contrib/cpt-size | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/cpt-size b/contrib/cpt-size index 63288a2..456fa25 100755 --- a/contrib/cpt-size +++ b/contrib/cpt-size @@ -1,7 +1,14 @@ #!/bin/sh -ef # Show the size on disk for a package -case "$1" in ''|--help|-h) printf '%s\n' "usage: ${0##*/} [pkg]" ; exit 0 ; esac +case "$1" in + --help|-h) + printf '%s\n' "usage: ${0##*/} [pkg]" + exit 0 + ;; + '') set -- "${PWD##*/}" +esac + cpt-search "$1" >/dev/null # Filter directories from manifest and leave only files. |