From 10a726ba943dcbe8c24f671ef9dd0fcd302ec9e1 Mon Sep 17 00:00:00 2001 From: optout Date: Fri, 12 Apr 2024 16:47:29 +0000 Subject: [PATCH] Fixed spacing between opt selections --- self_compilation.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/self_compilation.sh b/self_compilation.sh index 6a86e95..ba4ac89 100644 --- a/self_compilation.sh +++ b/self_compilation.sh @@ -82,7 +82,7 @@ fi # Prompt if baseline Plague kernel is desired ## If not, proceed to fingerprint device -read -p "Do you want create a custom kernel tailored to your hardware? (y/n)" response +read -p "Do you want create a custom kernel tailored to your hardware? (y/n): " response response=$(echo $response | tr '[:upper:]' '[:lower:]') if [[ $response == "y" ]]; then echo "Tailoring kernel configuration to your hardware" @@ -91,7 +91,7 @@ else echo "Using baseline Plague kernel configuration" fi -read -p "Do you want to open the kernel configuration editor? (y/n)" response +read -p "Do you want to open the kernel configuration editor? (y/n): " response response=$(echo $response | tr '[:upper:]' '[:lower:]') if [[ $response == "y" ]]; then make menuconfig