summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2010-12-10 07:52:39 -0800
committerBill Richardson <wfrichar@chromium.org>2010-12-10 07:52:39 -0800
commit2902623c5e921219c9ff31f46e0c70069dd56532 (patch)
tree9a2edcf50e0f4526823de2c467c5bd56ce8d11bb
parentdd574db57a20e6821cb27175ab0a663a73dbf1af (diff)
downloadvboot-2902623c5e921219c9ff31f46e0c70069dd56532.tar.gz
Mention that case is important when prompting before writing.
Change-Id: I35cb42d4120b734f6332fb671787f1e76e0c6832 BUG=chromium-os:10093 TEST=manual Run the installer. It should now say "You must enter 'YES' (all uppercase) to continue: " "If you're sure that's correct, enter 'DoIt' now (case is important): " Review URL: http://codereview.chromium.org/5612009
-rwxr-xr-xuser_tools/linux/recovery.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_tools/linux/recovery.sh b/user_tools/linux/recovery.sh
index 722e6437..56b0b4ce 100755
--- a/user_tools/linux/recovery.sh
+++ b/user_tools/linux/recovery.sh
@@ -788,7 +788,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
@@ -803,7 +803,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