| Index: user_tools/linux/recovery.sh
|
| diff --git a/user_tools/linux/recovery.sh b/user_tools/linux/recovery.sh
|
| index f5c2fae0b8f10d8e5b6f27a899b3301972ed4492..c4d76ce9c8102c146b3b2344ef4112c19f87919b 100755
|
| --- a/user_tools/linux/recovery.sh
|
| +++ b/user_tools/linux/recovery.sh
|
| @@ -766,7 +766,7 @@ Is this the device you want to put the recovery image on?
|
|
|
| $dev_desc
|
| "
|
| -prompt "You must enter 'YES' to continue: "
|
| +prompt "You must enter 'YES' (all uppercase) to continue: "
|
| read tmp
|
| if [ "$tmp" != "YES" ]; then
|
| quit
|
| @@ -781,7 +781,7 @@ whatever you may have on that drive. You won't be able to undo it.
|
| $dev_desc
|
| "
|
|
|
| -prompt "If you're sure that's the device to use, enter 'DoIt' now: "
|
| +prompt "If you're sure that's correct, enter 'DoIt' now (case is important): "
|
| read tmp
|
| if [ "$tmp" != "DoIt" ]; then
|
| quit
|
|
|