From 2f93203a6a98b48d250b00e574286a9bde530796 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 15 Jan 2023 22:08:16 +0100 Subject: [PATCH] fix DEV to _DISK --- usr/lib/archboot/installer/partition.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/partition.sh b/usr/lib/archboot/installer/partition.sh index 88caf0fb6..264331d90 100644 --- a/usr/lib/archboot/installer/partition.sh +++ b/usr/lib/archboot/installer/partition.sh @@ -41,7 +41,7 @@ _check_gpt() { _dialog --msgbox "Now you'll be put into cfdisk where you can partition your storage drive. You should make a swap partition and as many data partitions as you will need." 7 60 clear && cfdisk "${_DISK}" # reread partitiontable for kernel - partprobe "${_DEV}" + partprobe "${_DISK}" fi }