diff --git a/tools/install.sh b/tools/install.sh index ad47df785..9adaf2118 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -59,7 +59,8 @@ main() { exit 1 fi fi - env git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git $ZSH || { + # if running from the git repo use git's origin + [ -d .git ]&& env git clone --depth=1 origin master || env git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git $ZSH || { printf "Error: git clone of oh-my-zsh repo failed\n" exit 1 }