From f04fcf6b55e5ade911b6c3e93cf8b8d0a4f6965b Mon Sep 17 00:00:00 2001 From: Fred Klassen Date: Sun, 5 Feb 2023 13:11:11 -0800 Subject: [PATCH] Update install.sh --- tools/install.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/install.sh b/tools/install.sh index f4ef16a0c..123557718 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -1,14 +1,14 @@ #!/bin/sh # # This script should be run via curl: -# sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" +# sh -c "$(curl -fsSL https://raw.githubusercontent.com/fklassen/ohmyzsh/master/tools/install.sh)" # or via wget: -# sh -c "$(wget -qO- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" +# sh -c "$(wget -qO- https://raw.githubusercontent.com/fklassen/ohmyzsh/master/tools/install.sh)" # or via fetch: -# sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" +# sh -c "$(fetch -o - https://raw.githubusercontent.com/fklassen/ohmyzsh/master/tools/install.sh)" # # As an alternative, you can first download the install script and run it afterwards: -# wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh +# wget https://raw.githubusercontent.com/fklassen/ohmyzsh/master/tools/install.sh # sh install.sh # # You can tweak the install behavior by setting variables when running the script. For @@ -20,7 +20,7 @@ # [1] https://zsh.sourceforge.io/Doc/Release/Parameters.html#index-ZDOTDIR # [2] https://zsh.sourceforge.io/Doc/Release/Files.html#index-ZDOTDIR_002c-use-of # ZSH - path to the Oh My Zsh repository folder (default: $HOME/.oh-my-zsh) -# REPO - name of the GitHub repo to install from (default: ohmyzsh/ohmyzsh) +# REPO - name of the GitHub repo to install from (default: fklassen/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) # @@ -36,7 +36,7 @@ # For example: # sh install.sh --unattended # or: -# sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended +# sh -c "$(curl -fsSL https://raw.githubusercontent.com/fklassen/ohmyzsh/master/tools/install.sh)" "" --unattended # set -e @@ -67,7 +67,7 @@ zdot="${ZDOTDIR:-$HOME}" ZSH="${ZSH:-$HOME/.oh-my-zsh}" # Default settings -REPO=${REPO:-ohmyzsh/ohmyzsh} +REPO=${REPO:-fklassen/ohmyzsh} REMOTE=${REMOTE:-https://github.com/${REPO}.git} BRANCH=${BRANCH:-master}