From 5ddc54271a3ccd09e57f4cc69d18d50b4fedd1c9 Mon Sep 17 00:00:00 2001 From: The_miro Date: Sun, 25 May 2025 20:08:55 +0200 Subject: [PATCH] new approach to formatting maybeeeee --- setup/live-install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup/live-install.sh b/setup/live-install.sh index 90f6335..43efb2f 100755 --- a/setup/live-install.sh +++ b/setup/live-install.sh @@ -114,7 +114,7 @@ echo "running lsblk..." lsblk echo -n "Enter blockdev to install on or m for manual partitioning: " read blockdev -if [ "blockdev" != 'm' ]; then +if [ "$blockdev" != 'm' ]; then echo ''' @@ -146,6 +146,9 @@ if [ "blockdev" != 'm' ]; then fi +echo -n "Enter blockdev to install on: " +read blockdevnew +$blockdev=$blockdevnew fdisk $blockdev echo "Formatting Complete"