diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-03-17 18:57:12 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-03-17 18:57:12 +0100 |
commit | fd30949efaea3d564f2a954a585d93264d671760 (patch) | |
tree | 6177aa84eada9e580903a7906f845a9e6e55ff2a /stages | |
parent | 70e14eed39cb5c3b0f1220a2ff19851a85b9a90a (diff) | |
download | archinstall-fd30949efaea3d564f2a954a585d93264d671760.tar archinstall-fd30949efaea3d564f2a954a585d93264d671760.tar.zst archinstall-fd30949efaea3d564f2a954a585d93264d671760.zip |
Bugfix
Diffstat (limited to 'stages')
-rw-r--r-- | stages/first_stage.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stages/first_stage.sh b/stages/first_stage.sh index 204548f..ad2f6d4 100644 --- a/stages/first_stage.sh +++ b/stages/first_stage.sh @@ -97,8 +97,8 @@ fi if [ "$luks_encryption" == "no" ];then if [ "$boot_mode" == "bios" ];then - mkfs.ext4 ${disk_path}1 - e2label ${disk_path}1 "ROOT" + mkfs.ext4 ${path_to_disk}1 + e2label ${path_to_disk}1 "ROOT" elif [ "$boot_mode" == "uefi" ];then echo "Sorry, UEFI is not ready to use ..." exit 1 |