summaryrefslogtreecommitdiff
path: root/uninit.d
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-02-25 00:46:58 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-02-25 00:46:58 -0500
commitd4fab621ca7f1e4cc788b1bea8f7629be52d31bc (patch)
treefbbc5099fcebc3551117598df2b5cb1bcadb6902 /uninit.d
parent11fc661400581fd5c04e255db4b91477c0b92e4e (diff)
mixed case matching
Diffstat (limited to 'uninit.d')
-rwxr-xr-xuninit.d/01prompt2
1 files changed, 1 insertions, 1 deletions
diff --git a/uninit.d/01prompt b/uninit.d/01prompt
index 2732310..a87defb 100755
--- a/uninit.d/01prompt
+++ b/uninit.d/01prompt
@@ -7,7 +7,7 @@ echo ""
printf "Are you sure you want to do this? [yN] "
read answer
case "$answer" in
- Y|y|yes|YES)
+ [Yy][Ee][Ss])
echo "Proceeding.."
exit 0
;;