index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-20 00:33:38 -0600 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-20 00:33:38 -0600 |
commit | c2b2a30b81c7be718e6c2de8114f3b648ee875e9 (patch) | |
tree | 3788e836073b36f6cc8f055f6fe11e79ba79c3aa /configs | |
parent | f87259b3b839b46aacd23cb6dda57d9f96a2e79d (diff) |
-rwxr-xr-x | configs/install-iso/download-repo.sh | 3 |
diff --git a/configs/install-iso/download-repo.sh b/configs/install-iso/download-repo.sh index 31a3c79..35029fe 100755 --- a/configs/install-iso/download-repo.sh +++ b/configs/install-iso/download-repo.sh @@ -32,7 +32,8 @@ fi [ -d "$DEST" ] || mkdir -p "$DEST" -PKGS=$(/usr/bin/pacman -Slq $REPO) +#Ensure we have core/pkgname format, so we don't get crap from other repos +PKGS=$(/usr/bin/pacman -Sl $REPO | cut -d' ' -f1,2 | tr ' ' '/') if [ -n "$PKGS" ]; then baseurl="" |