aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-depends
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-09-05 07:13:28 +0000
committermerakor <cem@ckyln.com>2020-09-05 07:13:28 +0000
commit26e3b92dce26631a6783eb430326d37a93e62488 (patch)
tree17f55eaf44a035f068f9b818ff1196c2f58a2a5f /contrib/cpt-depends
parent16d4fd6cbf7835583d46960f96d30b35107e9c74 (diff)
downloadcpt-26e3b92dce26631a6783eb430326d37a93e62488.tar.gz
contrib: use current directory if no arguments are given
FossilOrigin-Name: 266bf81edde642e79582487e98140a0539f14c82dd0671eee91b22881cdf62db
Diffstat (limited to 'contrib/cpt-depends')
-rwxr-xr-xcontrib/cpt-depends8
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/cpt-depends b/contrib/cpt-depends
index 5f770b8..cd11f46 100755
--- a/contrib/cpt-depends
+++ b/contrib/cpt-depends
@@ -1,7 +1,13 @@
#!/bin/sh -ef
# Display a package's dependencies
-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" >/dev/null
cat "$CPT_ROOT/var/db/cpt/installed/$1/depends" 2>/dev/null