Merge pull request #20 from ismouton/fix-typo

Put prompts in more standard format
This commit is contained in:
Thomas Roth 2021-01-01 23:56:42 +01:00 committed by GitHub
commit 9fff5d6148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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