aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-repodepends
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/cpt-repodepends')
-rwxr-xr-xcontrib/cpt-repodepends10
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/cpt-repodepends b/contrib/cpt-repodepends
index 1b0b391..0babe69 100755
--- a/contrib/cpt-repodepends
+++ b/contrib/cpt-repodepends
@@ -1,7 +1,13 @@
#!/bin/sh -e
# Display a package's dependencies in the repository
-case "$1" in ''|--help|-h) printf '%s\n' "usage: ${0##*/} [pkg]" ; exit 0 ; esac
-cpt-search "$1" >/dev/null
+case "$1" in
+ --help|-h)
+ printf '%s\n' "usage: ${0##*/} [pkg]"
+ exit 0
+ ;;
+ '') set -- "${PWD##*/}"
+esac
+cpt-search "$1" >/dev/null
cat "$(cpt-search --single "$1")/depends" 2>/dev/null