This commit is contained in:
Your Name 2023-02-14 16:43:42 -07:00
parent 96817b958e
commit 0f5752041c

View File

@ -353,11 +353,11 @@ locale() {
partitions() { partitions() {
echo echo
echo "Setting Up Partitions....." echo "Setting Up Partitions....."
printf "$DISK_PASSWORD" | cryptsetup open ${BTRFS} $ROOT_MAPPER printf "$DISK_PASSWORD" | cryptsetup open ${BTRFS} $ROOT_MAPPER_NAME
unmount unmount
if [[ -f "/dev/mapper/$ROOT_MAPPER" ]]; then if [[ -e "/dev/mapper/$ROOT_MAPPER_NAME" ]]; then
echo echo
echo "Formatting $EFI" echo "Formatting $EFI"
echo echo
@ -368,7 +368,7 @@ partitions() {
fstab fstab
else else
echo echo
echo "Aborting Install, mapper device not found!" echo "Aborting Install, /dev/mapper/$ROOT_MAPPER_NAME not found!"
echo echo
echo echo
exit 1 exit 1