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
|
fi
|
||||||
|
|
||||||
echo "This step will overwrite the contents of the SPI flash chip that we backed up in step 2."
|
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
|
read -n 1 -r
|
||||||
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
source config.sh $1
|
source config.sh $1
|
||||||
|
|
||||||
echo "Unlocking your device will erase its internal flash. Even though your backup"
|
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
|
read -n 1 -r
|
||||||
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
source config.sh $1
|
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
|
read -n 1 -r
|
||||||
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue