diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cpt-lib.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cpt-lib.in b/src/cpt-lib.in index 4675d19..407fd82 100644 --- a/src/cpt-lib.in +++ b/src/cpt-lib.in @@ -2000,8 +2000,11 @@ pkg_gentree() ( pkg_query_meta() { # Query the 'meta' file of the given meta package. If there is no meta file, # or the key being queried is unavailable, the function will return with - # error. - repo_dir=$(pkg_find "$1") + # error. Full path can be specified instead of package names. + case $1 in + */*) repo_dir=$1 ;; + *) repo_dir=$(pkg_find "$1") + esac [ -f "$repo_dir/meta" ] || return while IFS=': ' read -r key val; do case $key in |