diff --git a/install.sh b/install.sh index 7c570ec..d3c2839 100755 --- a/install.sh +++ b/install.sh @@ -4,14 +4,14 @@ # Idempotent: safe to re-run. # # Usage: -# git clone https://github.com//dotfiles ~/dotfiles && cd ~/dotfiles && ./install.sh +# git clone https://git.nic-oconnor.com/noconnor/dotfiles.git ~/dotfiles && cd ~/dotfiles && ./install.sh # or: -# curl -fsSL https://raw.githubusercontent.com//dotfiles/main/install.sh | bash +# curl -fsSL https://git.nic-oconnor.com/noconnor/dotfiles/raw/branch/main/install.sh | bash # (the curl form will git clone this repo to ~/dotfiles before running.) set -euo pipefail -REPO_URL="${DOTFILES_REPO:-https://github.com//dotfiles}" +REPO_URL="${DOTFILES_REPO:-https://git.nic-oconnor.com/noconnor/dotfiles.git}" DOTFILES_DIR="${DOTFILES_DIR:-$HOME/dotfiles}" log() { printf '\033[1;34m==>\033[0m %s\n' "$*"; }