Fixed spacing between opt selections

This commit is contained in:
optout 2024-04-12 16:47:29 +00:00
parent a7cb3530eb
commit 10a726ba94
No known key found for this signature in database
GPG Key ID: 13BA4BD4C14170C0
1 changed files with 2 additions and 2 deletions

View File

@ -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