From 3e6d6df4fef5fa526e00db198dd6a509e57da6f8 Mon Sep 17 00:00:00 2001 From: Andrew Hodges Date: Sat, 4 Jun 2011 08:49:28 -0400 Subject: [PATCH] Remove Strange, Unnecessary Semicolons --- tools/install.sh | 6 +++--- tools/uninstall.sh | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/install.sh b/tools/install.sh index 5b72c7395..5705e1006 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -16,9 +16,9 @@ echo "${BLUE}Cloning Oh My Zsh...${RESET}" echo "${BLUE}Looking for an existing zsh config...${RESET}" if [ -f ~/.zshrc ] || [ -h ~/.zshrc ] then - echo "${YELLOW}Found ~/.zshrc.${RESET} ${GREEN}Backing up to ~/.zshrc.pre-oh-my-zsh${RESET}"; - cp ~/.zshrc ~/.zshrc.pre-oh-my-zsh; - rm ~/.zshrc; + echo "${YELLOW}Found ~/.zshrc.${RESET} ${GREEN}Backing up to ~/.zshrc.pre-oh-my-zsh${RESET}" + cp ~/.zshrc ~/.zshrc.pre-oh-my-zsh + rm ~/.zshrc fi echo "${BLUE}Using the Oh My Zsh template file and adding it to ~/.zshrc${RESET}" diff --git a/tools/uninstall.sh b/tools/uninstall.sh index 1bd0678a6..3a36a39e2 100644 --- a/tools/uninstall.sh +++ b/tools/uninstall.sh @@ -13,10 +13,10 @@ fi echo "${BLUE}Looking for an existing zsh config...${RESET}" if [ -f ~/.zshrc.pre-oh-my-zsh ] || [ -h ~/.zshrc.pre-oh-my-zsh ] then - echo "${YELLOW}Found ~/.zshrc.pre-oh-my-zsh.${RESET} ${GREEN}Restoring to ~/.zshrc${RESET}"; - rm ~/.zshrc; - cp ~/.zshrc.pre-oh-my-zsh ~/.zshrc; - source ~/.zshrc; + echo "${YELLOW}Found ~/.zshrc.pre-oh-my-zsh.${RESET} ${GREEN}Restoring to ~/.zshrc${RESET}" + rm ~/.zshrc + cp ~/.zshrc.pre-oh-my-zsh ~/.zshrc + source ~/.zshrc else echo "${BLUE}Switching back to bash${RESET}" chsh -s /bin/bash