From aaf2c4e0ddf69c01ce83a0b0652d774df1ba5f6d Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Sun, 14 Dec 2025 12:23:27 +0000 Subject: [PATCH] wip Signed-off-by: 35C4n0r --- registry/coder/modules/claude-code/scripts/start.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/registry/coder/modules/claude-code/scripts/start.sh b/registry/coder/modules/claude-code/scripts/start.sh index d07dc1d4..9fd13956 100644 --- a/registry/coder/modules/claude-code/scripts/start.sh +++ b/registry/coder/modules/claude-code/scripts/start.sh @@ -3,7 +3,8 @@ # Set strict error handling AFTER sourcing bashrc to avoid unbound variable errors from user dotfiles set -euo pipefail -export PATH="$HOME/.local/bin:$PATH" +# Redirect all script output to log file +exec >> "$HOME/start.log" 2>&1 command_exists() { command -v "$1" > /dev/null 2>&1