Refactor disk detection during partitioning

This commit is contained in:
Manuel Thalmann 2023-04-07 18:25:21 +02:00
parent 60e24e0dae
commit 59aadb0856

View file

@ -5,7 +5,12 @@ 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" ] || [ ! -e "/dev/$ARCH_DISK" ]
if [ ! -z "$ARCH_DISK" ] && [ ! -e "$ARCH_DISK" ]
then
ARCH_DISK="/dev/${ARCH_DISK}"
fi;
if [ -z "$ARCH_DISK" ] || [ ! -e "$ARCH_DISK" ]
then
chooseDisk ARCH_DISK "Which disk do you wish to format for installing Arch?";
fi;