diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-03-15 19:49:34 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-03-15 19:51:31 +0100 |
commit | e8716cb5703e4cff8dd6f0a4ba12ded7aee86f2d (patch) | |
tree | dd59f44ddd7008e1182fcddb5900e0fd4b092bf0 | |
parent | 3bb5e97762ee764170cffa6cfd1d179a1ba92ff3 (diff) | |
download | zsh-e8716cb5703e4cff8dd6f0a4ba12ded7aee86f2d.tar.gz zsh-e8716cb5703e4cff8dd6f0a4ba12ded7aee86f2d.tar.bz2 zsh-e8716cb5703e4cff8dd6f0a4ba12ded7aee86f2d.zip |
fix(uninstall): fix renaming .zshrc when no original rc file found
Fixes #9629
Fixes #9700
-rw-r--r-- | tools/uninstall.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/uninstall.sh b/tools/uninstall.sh index b327a0163..6a0e7b4c7 100644 --- a/tools/uninstall.sh +++ b/tools/uninstall.sh @@ -9,20 +9,20 @@ if [ -d ~/.oh-my-zsh ]; then rm -rf ~/.oh-my-zsh fi +if [ -e ~/.zshrc ]; then + ZSHRC_SAVE=~/.zshrc.omz-uninstalled-$(date +%Y-%m-%d_%H-%M-%S) + echo "Found ~/.zshrc -- Renaming to ${ZSHRC_SAVE}" + mv ~/.zshrc "${ZSHRC_SAVE}" +fi + echo "Looking for original zsh config..." ZSHRC_ORIG=~/.zshrc.pre-oh-my-zsh if [ -e "$ZSHRC_ORIG" ]; then echo "Found $ZSHRC_ORIG -- Restoring to ~/.zshrc" - - if [ -e ~/.zshrc ]; then - ZSHRC_SAVE=~/.zshrc.omz-uninstalled-$(date +%Y-%m-%d_%H-%M-%S) - echo "Found ~/.zshrc -- Renaming to ${ZSHRC_SAVE}" - mv ~/.zshrc "${ZSHRC_SAVE}" - fi - mv "$ZSHRC_ORIG" ~/.zshrc - echo "Your original zsh config was restored." +else + echo "No original zsh config found" fi if hash chsh >/dev/null 2>&1 && [ -f ~/.shell.pre-oh-my-zsh ]; then |