From faafb704e8fd9769250ad64522158ffde88f57bd Mon Sep 17 00:00:00 2001 From: Kyle K Date: Thu, 13 Feb 2020 17:04:01 -0600 Subject: fix typo path passed to fdisk --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index d7b7d24..a1a135f 100755 --- a/install.sh +++ b/install.sh @@ -67,7 +67,7 @@ setup_btrfs () { # ls /mnt/install should respond with empty result mkdir /mnt/install/.snapshots - mkdir /mnt/install/boot + mkdir /mnt/install/boot #mkdir -p /mnt/install/boot/grub/i386-pc #mkdir -p /mnt/install/boot/grub/x86_64-efi mkdir /mnt/install/home @@ -125,7 +125,7 @@ if [[ $partitioning_mode = "a" ]]; then mkdir -p /mnt/install/boot/efi mount $UEFI_PART /mnt/install/boot/efi else - echo -e "o\nn\np\n1\n\n\nw" | fdisk /dev/$drive + echo -e "o\nn\np\n1\n\n\nw" | fdisk $drive setup_btrfs "${drive}1" fi else -- cgit v1.2.3