From ab9037167c8b5587614ac0776faa7d542973c727 Mon Sep 17 00:00:00 2001 From: cronyakatsuki Date: Thu, 13 Oct 2022 21:01:02 +0200 Subject: [PATCH] Fix the mkfs.vfat command. --- arch_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch_install.sh b/arch_install.sh index 9b1555a..5dc7ea5 100755 --- a/arch_install.sh +++ b/arch_install.sh @@ -41,7 +41,7 @@ read -p "Did you also create swap partition? [y/n]: " answer read -p "Did you also create efi partition? [y/n]: " answer [[ $answer = y ]] && read -p "Enter EFI partition: " efipartition -[[ ! -z ${efipartition+x} ]] && mkfs.vfat -f -F 32 $efipartition +[[ ! -z ${efipartition+x} ]] && mkfs.vfat -F 32 $efipartition echo "Setting up btrfs subvolumes" mount $partition /mnt