index : asp32 | |
Archlinux32 fork of asp - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | asp.in | 2 | ||||
-rw-r--r-- | package.inc.sh | 6 |
@@ -156,7 +156,7 @@ dump_packages() { dumpfn=remote_get_tracked_refs ;; *) - die 'internal error: invalid dump type: "%s"' "$1" + log_fatal 'BUG: invalid dump type: "%s"' "$1" ;; esac diff --git a/package.inc.sh b/package.inc.sh index 1ae9a5b..7af7a82 100644 --- a/package.inc.sh +++ b/package.inc.sh @@ -74,7 +74,7 @@ package_log() { logargs=() ;; *) - die 'internal error: unknown log method: %s' "$method" + log_fatal 'BUG: unknown log method: %s' "$method" ;; esac @@ -177,7 +177,9 @@ package_get_repos_with_arch() { pkgname=$1 while read -r path; do - IFS=/- read -r _ repo arch <<<"$path" + path=${path##*/} + repo=${path%-*} + arch=${path##*-} printf '%s %s\n' "$repo" "$arch" done < <(git ls-tree --name-only "remotes/$remote/packages/$pkgname" repos/) } |