From 26e3b92dce26631a6783eb430326d37a93e62488 Mon Sep 17 00:00:00 2001 From: merakor Date: Sat, 5 Sep 2020 07:13:28 +0000 Subject: contrib: use current directory if no arguments are given FossilOrigin-Name: 266bf81edde642e79582487e98140a0539f14c82dd0671eee91b22881cdf62db --- contrib/cpt-manifest-tree | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'contrib/cpt-manifest-tree') diff --git a/contrib/cpt-manifest-tree b/contrib/cpt-manifest-tree index 823b013..d89c85c 100755 --- a/contrib/cpt-manifest-tree +++ b/contrib/cpt-manifest-tree @@ -1,7 +1,13 @@ #!/bin/sh -ef # Display all files owned by a package with a tree view -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 printf '%s\n' "[$1]:" tree -C --fromfile "$CPT_ROOT/var/db/cpt/installed/$1/manifest" | sed 1,2d -- cgit v1.2.3