Fix incorrect variable assignment

This commit is contained in:
Manuel Thalmann 2023-04-01 03:32:04 +02:00
parent 009c60dc9b
commit 6a9cdfd8a3

View file

@ -39,9 +39,9 @@ swapSize="$(echo "$memory" | awk '{ print int(($1 / 4) + 0.5)}')";
} | fdisk "$archDisk"; } | fdisk "$archDisk";
disks=($(bash -c "echo $archDisk*")); disks=($(bash -c "echo $archDisk*"));
bootDisk="${disks[0]}"; bootDisk="${disks[1]}";
swapDisk="${disks[1]}"; swapDisk="${disks[2]}";
linuxDisk="${disks[2]}"; linuxDisk="${disks[3]}";
mkfs.fat -F 32 "$bootDisk"; mkfs.fat -F 32 "$bootDisk";
mkswap "$swapDisk"; mkswap "$swapDisk";