From 7da6a81aa4da7a07384b4d9f5f4acb349365c442 Mon Sep 17 00:00:00 2001 From: Howard Enos Date: Tue, 19 May 2026 22:33:04 -0700 Subject: [PATCH] fix: add C:/claudetools to sync.sh candidate path list HOWARD-HOME installs to C: not D:, causing sync.sh to fail with "Not in a git working tree" on that machine. Co-Authored-By: Claude Sonnet 4.6 --- .claude/scripts/sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/scripts/sync.sh b/.claude/scripts/sync.sh index d3d386a..f7e6a89 100755 --- a/.claude/scripts/sync.sh +++ b/.claude/scripts/sync.sh @@ -23,7 +23,7 @@ TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S") echo -e "${GREEN}[OK]${NC} Starting ClaudeTools sync from $MACHINE at $TIMESTAMP" # Navigate to ClaudeTools directory (check common locations) -for candidate in "$HOME/ClaudeTools" "/d/ClaudeTools" "D:/ClaudeTools" "/d/claudetools" "D:/claudetools"; do +for candidate in "$HOME/ClaudeTools" "/d/ClaudeTools" "D:/ClaudeTools" "/d/claudetools" "D:/claudetools" "C:/claudetools" "/c/claudetools"; do if [ -d "$candidate" ]; then cd "$candidate" break