Ask for disk if the specified one does not exist

This commit is contained in:
Manuel Thalmann 2023-04-07 02:13:23 +02:00
parent 6263b28e7b
commit 94960c20df

View file

@ -5,7 +5,7 @@ ARCH_DISK="${ARCH_DISK}";
memory="$(cat /proc/meminfo | awk -F " " '/^MemTotal/ { print $2 }')";
swapSize="$(echo "$memory" | awk '{ print int(($1 / 1024 / 1024 4) + 0.5)}')";
if [ -z "$ARCH_DISK" ]
if [ -z "$ARCH_DISK" ] || [ ! -e "/dev/$ARCH_DISK" ]
then
chooseDisk ARCH_DISK "Which disk do you wish to format for installing Arch?";
fi;