diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-11-12 21:18:20 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-11-12 21:18:20 +0100 |
commit | dbc9e82857241b76050b6a15e89be7e1b29297f9 (patch) | |
tree | e0dc501b85025f313b4dd5345841d50f87cc4d56 | |
parent | ee7d6a9b629b9bd673ff334eb0066eb895ce439e (diff) | |
download | archinstall-dbc9e82857241b76050b6a15e89be7e1b29297f9.tar archinstall-dbc9e82857241b76050b6a15e89be7e1b29297f9.tar.zst archinstall-dbc9e82857241b76050b6a15e89be7e1b29297f9.zip |
Fixed too early copy of repository.
-rw-r--r-- | bin/first_stage.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/first_stage.sh b/bin/first_stage.sh index 15db09c..0970049 100644 --- a/bin/first_stage.sh +++ b/bin/first_stage.sh @@ -154,11 +154,6 @@ sleep $DELAY echo "" -# Copy repository from live image to root partition - -cp -r $REPOSITORY_PATH /mnt$REPOSITORY_PATH - - # Install basic Packages echo "Going to install basic packages ..." @@ -171,6 +166,11 @@ sleep $DELAY echo "" +# Copy repository from live image to root partition + +cp -r $REPOSITORY_PATH /mnt$REPOSITORY_PATH + + # Generate /etc/fstab file genfstab -U /mnt >> /mnt/etc/fstab |