From 1b4498b24aaecca3278fb95a7d4d557eda8f8993 Mon Sep 17 00:00:00 2001 From: phga Date: Sat, 12 Mar 2022 15:01:12 +0100 Subject: [PATCH] refact: missing space --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 113f18e..93bb811 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -37,7 +37,7 @@ init() { [[ "$DEV" =~ nvme[0-9]n[0-9] ]] && SUF="p1-3" && MODE="NVME" [ -z "$SWAP_SIZE" ] && read -p "Specify the size for the SWAP partition (16G, 1M, ...): " SWAP_SIZE [ -z "$ENC" ] && read -p "Do you want the root partition to be encrypted (y/n)? " ENC - [ -z "$KERNEL" ] && read -p "Which kernel? [1: linux, 2: linux-zen]" KERNEL + [ -z "$KERNEL" ] && read -p "Which kernel? [1: linux, 2: linux-zen]: " KERNEL [ "$KERNEL" == "1" ] && KERNEL="linux" || KERNEL="linux-zen" [ "$ENC" == "y" ] && ENC=true || ENC=false