From 7ddbbbe695389458cb6aa127d054f749deed6e70 Mon Sep 17 00:00:00 2001 From: Nic O'Connor Date: Thu, 28 May 2026 18:50:49 -0400 Subject: [PATCH] Use real origin remote URL in install.sh The curl|bash bootstrap was cloning the GitHub placeholder, which 404'd. Point REPO_URL (and the usage comments) at the actual Gitea origin. Co-Authored-By: Claude Opus 4.8 (1M context) --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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' "$*"; }