Merge pull request #20 from ismouton/fix-typo
Put prompts in more standard format
This commit is contained in:
commit
9fff5d6148
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue