summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2020-03-18 18:04:29 +0100
committerxengineering <mail2xengineering@protonmail.com>2020-03-18 18:04:29 +0100
commitebf7eac32d7ce0f176e269d6647ed1914cdeaff9 (patch)
treeb32843acea2c681b2122126c5b6f88858d05b103
parent4e957a95bbd755d6d955d2c49794647f7f1be6b0 (diff)
downloadarchinstall-ebf7eac32d7ce0f176e269d6647ed1914cdeaff9.tar
archinstall-ebf7eac32d7ce0f176e269d6647ed1914cdeaff9.tar.zst
archinstall-ebf7eac32d7ce0f176e269d6647ed1914cdeaff9.zip
Ready for devel branch
-rw-r--r--archinstall.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/archinstall.sh b/archinstall.sh
index c1daaf9..43f9d8f 100644
--- a/archinstall.sh
+++ b/archinstall.sh
@@ -55,7 +55,7 @@ EOF
# Constants
######################## CHANGE FOR PRODUCTION:
-export BRANCH="feature_bios" # possible alternatives: "devel" or "feature_<myfeature>"
+export BRANCH="devel" # possible alternatives: "devel" or "feature_<myfeature>"
export INTERNET_TEST_SERVER="archlinux.org"
export INTERNET_TEST_PING_TIMEOUT=1 # in seconds
export FIRST_STAGE_LINK="https://raw.githubusercontent.com/xengineering/archinstall/$BRANCH/stages/first_stage.sh"
@@ -98,7 +98,8 @@ curl $FIRST_STAGE_LINK > /root/first_stage.sh
bash /root/first_stage.sh
-# Download and run second stage
+# Download, run and delete second stage
curl $SECOND_STAGE_LINK > /mnt/root/second_stage.sh
echo "bash /root/second_stage.sh" | arch-chroot /mnt
+rm /mnt/root/second_stage.sh