index : bootstrap32 | |
Archlinux32 bootstrap scripts | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-01-28 18:25:52 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-01-28 18:25:52 +0100 |
commit | 37be8f73669ddadf2259656f656af5f5c5bc39b9 (patch) | |
tree | 68fea63a95500245869ebac5537dda5c4401490f /prepare_stage1_repo.sh | |
parent | 164181c1589942d9d1c8e1bf6cbba76974b7e1c7 (diff) |
-rwxr-xr-x | prepare_stage1_repo.sh | 4 |
diff --git a/prepare_stage1_repo.sh b/prepare_stage1_repo.sh index dcce93b..d7df4e2 100755 --- a/prepare_stage1_repo.sh +++ b/prepare_stage1_repo.sh @@ -64,7 +64,7 @@ if test ! -d $STAGE1_BUILD; then # prepare the build enviroment mkdir $STAGE1_BUILD - cd $STAGE1_BUILD + cd $STAGE1_BUILD || exit 1 # prepare makepkg for building into the i486-chroot cp /usr/bin/makepkg $STAGE1_BUILD/makepkg-i486 @@ -90,7 +90,7 @@ if test ! -d $CROSS_HOME/packages32; then # get packages repo from Archlinux32 for the diffs - git clone git@github.com:archlinux32/packages.git $CROSS_HOME/packages32 + git clone $GIT_URL_ARCHLINUX32_PACKAGES $CROSS_HOME/packages32 echo "Fetched Archlinux32 diffs for packages." fi |