From b8fefcdfb8465248e00a3c0df0f4bd122a8468d9 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 17 Apr 2023 18:50:06 +0000 Subject: [PATCH] Update install.sh --- install.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/install.sh b/install.sh index 1ba407a..847167b 100644 --- a/install.sh +++ b/install.sh @@ -37,30 +37,30 @@ echo w # write changes. if [ $driveName == /dev/nvme* ]; then # Set variables - efiName="${driveName}p1" - rootName="${driveName}p2" - swapName="${driveName}p3" + efiName=${driveName}p1 + rootName=${driveName}p2 + swapName=${driveName}p3 # Check if the device is a SATA drive elif [ $driveName == /dev/sd* ]; then # Set variables - efiName="${driveName}1" - rootName="${driveName}2" - swapName="${driveName}3" + efiName=${driveName}1 + rootName=${driveName}2 + swapName=${driveName}3 # Check if the device is a Virtual drive elif [ $driveName == /dev/vd* ]; then # Set variables - efiName="${driveName}1" - rootName="${driveName}2" - swapName="${driveName}3" + efiName=${driveName}1 + rootName=${driveName}2 + swapName=${driveName}3 # Check if the device is an eMMC drive elif [ $driveName == /dev/mmcblk* ]; then # Set variables - efiName="${driveName}1" - rootName="${driveName}2" - swapName="${driveName}3" + efiName=${driveName}1 + rootName=${driveName}2 + swapName=${driveName}3 fi