Fixed spacing between opt selections
This commit is contained in:
parent
a7cb3530eb
commit
10a726ba94
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user