Browse Source

Also accept any forms of yes as an answer to the "do you want to update?" prompt

Marc Scholten 8 years ago
parent
commit
d351c76b04
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/check_for_upgrade.sh

+ 1 - 1
tools/check_for_upgrade.sh

@@ -43,7 +43,7 @@ then
     else
       echo "[Oh My Zsh] Would you like to check for updates? [Y/n]: \c"
       read line
-      if [ "$line" = Y ] || [ "$line" = y ] || [ -z "$line" ]; then
+      if [[ "$line" == Y* ]] || [[ "$line" == y* ]] || [ -z "$line" ]; then
         _upgrade_zsh
       else
         _update_zsh_update