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