From 4477ed9101de69de57cb5c96c9c74689a1386153 Mon Sep 17 00:00:00 2001 From: Bernd Steckmeister Date: Sun, 5 Jul 2026 14:47:35 +0200 Subject: [PATCH] fix: Hauptkonto-Profil ohne CLAUDE_CONFIG_DIR ansprechen (Config-Pfad-Falle) Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01CPrAGBxBT6GfPXzeWQ4AXb --- autopilot.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autopilot.sh b/autopilot.sh index 18ad11c..fbfdf84 100755 --- a/autopilot.sh +++ b/autopilot.sh @@ -17,7 +17,9 @@ get_account() { cat "$ACCOUNT_FILE" 2>/dev/null || echo pyramid; } apply_account() { if [ "$(get_account)" = "haupt" ]; then - export CLAUDE_CONFIG_DIR="$HOME/.claude" + # Hauptkonto = Standard-Profil -> Variable NICHT setzen + # (sonst sucht Claude die Config unter ~/.claude/.claude.json statt ~/.claude.json) + unset CLAUDE_CONFIG_DIR else export CLAUDE_CONFIG_DIR="$HOME/.claude-pyramid" fi