diff options
author | Robin Hallabro <robin@hallabro.nu> | 2015-06-29 07:48:35 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-12-15 03:46:46 +0100 |
commit | 18ca953f12ef41395536776c9bfb5bc76b40b814 (patch) | |
tree | 3c858091060c186d409f2a13064f47f3d87b3c74 | |
parent | ef31d0642627f20ff9e0fd180e357e18371ca338 (diff) | |
download | zsh-18ca953f12ef41395536776c9bfb5bc76b40b814.tar.gz zsh-18ca953f12ef41395536776c9bfb5bc76b40b814.tar.bz2 zsh-18ca953f12ef41395536776c9bfb5bc76b40b814.zip |
Use consistent wording when updating
When the user is asked to update oh-my-zsh it says "[Oh My Zsh] Would
you like to check for updates? [Y/n]:". When the user agreed to update
the next text would say "Upgrading Oh My Zsh" which is inconsistent
with the question.
-rw-r--r-- | tools/upgrade.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/upgrade.sh b/tools/upgrade.sh index fe8fbadca..d5e7e8ba8 100644 --- a/tools/upgrade.sh +++ b/tools/upgrade.sh @@ -20,7 +20,7 @@ else NORMAL="" fi -printf "${BLUE}%s${NORMAL}\n" "Upgrading Oh My Zsh" +printf "${BLUE}%s${NORMAL}\n" "Updating Oh My Zsh" cd "$ZSH" if git pull --rebase --stat origin master then |