Update prompts to standard `y/N` format.

This commit is contained in:
Shane Mouton 2021-01-01 17:21:28 -05:00
parent 718ff9c1a4
commit 11b6cdd9e7
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ if test -f backups/internal_flash_backup.bin; then
fi
echo "This step will overwrite the contents of the SPI flash chip that we backed up in step 2."
echo "It will be restored in step 5. Continue? (Y/y)"
echo "It will be restored in step 5. Continue? (y/N)"
read -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]
then

View File

@ -3,7 +3,7 @@
source config.sh $1
echo "Unlocking your device will erase its internal flash. Even though your backup"
echo "is validated, this still can go wrong. Are you sure? (Y/y)"
echo "is validated, this still can go wrong. Are you sure? (y/N)"
read -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]
then

View File

@ -2,7 +2,7 @@
source config.sh $1
echo "This will lock your device! Are you sure? (Y/y)"
echo "This will lock your device! Are you sure? (y/N)"
read -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]
then