diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-11-21 02:26:18 +0100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2019-11-20 17:26:18 -0800 |
commit | b80b1a1e8b30e5f2a7c4977019cf56e72c434037 (patch) | |
tree | 9847981294bba8c4c1a547267b33a202a0c2dc06 /tools/install.sh | |
parent | bb10c979ef22b2c5242dc0348b3ea3a1bf9b731d (diff) | |
download | zsh-b80b1a1e8b30e5f2a7c4977019cf56e72c434037.tar.gz zsh-b80b1a1e8b30e5f2a7c4977019cf56e72c434037.tar.bz2 zsh-b80b1a1e8b30e5f2a7c4977019cf56e72c434037.zip |
Actions to take after repository migration is complete (#8394)
* Change project URL from robbyrussell to ohmyzsh org
* Update git remote to use ohmyzsh org repository
Diffstat (limited to 'tools/install.sh')
-rwxr-xr-x | tools/install.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/install.sh b/tools/install.sh index a5a90e6f6..ae248be89 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -1,12 +1,12 @@ #!/bin/sh # # This script should be run via curl: -# sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" +# sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # or wget: -# sh -c "$(wget -qO- https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" +# sh -c "$(wget -qO- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # # As an alternative, you can first download the install script and run it afterwards: -# wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh +# wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh # sh install.sh # # You can tweak the install behavior by setting variables when running the script. For @@ -15,7 +15,7 @@ # # Respects the following environment variables: # ZSH - path to the Oh My Zsh repository folder (default: $HOME/.oh-my-zsh) -# REPO - name of the GitHub repo to install from (default: robbyrussell/oh-my-zsh) +# REPO - name of the GitHub repo to install from (default: ohmyzsh/ohmyzsh) # REMOTE - full remote URL of the git repo to install (default: GitHub via HTTPS) # BRANCH - branch to check out immediately after install (default: master) # @@ -33,7 +33,7 @@ set -e # Default settings ZSH=${ZSH:-~/.oh-my-zsh} -REPO=${REPO:-robbyrussell/oh-my-zsh} +REPO=${REPO:-ohmyzsh/ohmyzsh} REMOTE=${REMOTE:-https://github.com/${REPO}.git} BRANCH=${BRANCH:-master} |