git.lucas.co / gitsite
the static git browser that builds this site
git clone https://git.lucas.co/gitsite.git

commite35de1fc500506cd18704b48c16434bdccefa646
parent61d019d777
authorLucas Galante <[email protected]>
date2026-09-19 23:47
REPOS_CONF follows the repo out of Dropbox

This repo moved to ~/projects/gitsite, but the default config path still
pointed into ~/Dropbox/src/gitsite, which no longer exists. Runs kept working
only because the fix was sitting uncommitted in the work tree; a clean
checkout would have failed to find repos.conf at all.

Co-Authored-By: Claude Opus 5 <[email protected]>

 git-bare-sync.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git-bare-sync.sh b/git-bare-sync.sh
index 1e3fe4d..d290295 100755
--- a/git-bare-sync.sh
+++ b/git-bare-sync.sh
@@ -45,7 +45,7 @@
 set -eu
 
 BARE_ROOT="${GIT_BARE_ROOT:-$HOME/git}"
-REPOS_CONF="${REPOS_CONF:-$HOME/Dropbox/src/gitsite/repos.conf}"
+REPOS_CONF="${REPOS_CONF:-$HOME/projects/gitsite/repos.conf}"
 DRY=""
 [ "${1:-}" = "--dry-run" ] && DRY=1