From 355c3dceb411fdfaff06530c2c0a9774d2e58a97 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 7 Nov 2025 13:05:26 +0000 Subject: [PATCH] fix: Remove exec from claude auto-start to allow manual shell usage Allow users to exit claude and continue using shell manually. When claude exits, user returns to zsh instead of logging out. --- cfg/setup-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/setup-user.sh b/cfg/setup-user.sh index 6147978..ed86ee4 100755 --- a/cfg/setup-user.sh +++ b/cfg/setup-user.sh @@ -33,7 +33,7 @@ cat >> $ROOTFS/home/ai/.zshrc <<'EOF' # Auto-start claude in interactive login shell if [[ -o login ]] && [[ -o interactive ]]; then if command -v claude &>/dev/null; then - exec claude + claude fi fi EOF