diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-09-17 11:26:40 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-09-17 11:26:40 +0200 |
commit | 7c07daaa9b5607b8df53dd33c76facee89a03b4b (patch) | |
tree | 718d86b7fabd7458da5d534486bbb2ea8383889e | |
parent | b1d9642c9b5a39a09f2caab00c3b0c9c3b234e26 (diff) | |
download | archinstall-7c07daaa9b5607b8df53dd33c76facee89a03b4b.tar archinstall-7c07daaa9b5607b8df53dd33c76facee89a03b4b.tar.zst archinstall-7c07daaa9b5607b8df53dd33c76facee89a03b4b.zip |
Bugfix in substitution in archinstall.sh.
-rw-r--r-- | archinstall.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall.sh b/archinstall.sh index 60ce909..c888739 100644 --- a/archinstall.sh +++ b/archinstall.sh @@ -218,10 +218,10 @@ cd /root mv /mnt/opt/archinstall /mnt/opt/archinstall.git cd /mnt/opt/archinstall.git && git checkout $BRANCH cd /root -echo "bash /opt/archinstall/bin/second_stage.sh $hostname ${$disk_path}1" | arch-chroot /mnt +echo "bash /opt/archinstall/bin/second_stage.sh $hostname ${disk_path}1" | arch-chroot /mnt cd /root && umount $root_partition_path -echo "Removed second stage script and unmounted root partition - OK" +echo "Unmounted root partition - OK" sleep $DELAY echo "" |