index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-19 22:32:57 -0600 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-19 22:32:57 -0600 |
commit | 773571c479c8c2c8150de804a01e3df3fcebefa6 (patch) | |
tree | 88f5e0ba563f80fafab7c6fbb5d2c06f24da38a4 /configs | |
parent | 8601b971af4604e106c46348e26c5b08a18de04d (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 b5a09bd..31a3c79 100755 --- a/configs/install-iso/download-repo.sh +++ b/configs/install-iso/download-repo.sh @@ -35,10 +35,13 @@ fi PKGS=$(/usr/bin/pacman -Slq $REPO) if [ -n "$PKGS" ]; then + baseurl="" for url in $(/usr/bin/pacman -Sp $PKGS | grep '://'); do + baseurl="$(dirname "$url")" #save for later pkgname="$(basename "$url")" wget -nv "$url" -O "$DEST/$pkgname" done + wget -nv "$baseurl/$REPO.db.tar.gz" -O "$DEST/$REPO.db.tar.gz" else echo "No packages to download... what'd you break?" exit 1 |