From 090fa7dd1dda991604927f4018032ac17d75d7f4 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Sun, 14 Dec 2025 11:04:55 +0000 Subject: [PATCH] wip Signed-off-by: 35C4n0r --- registry/coder/modules/claude-code/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index 5a4b8c74..8d87c332 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -416,7 +416,7 @@ resource "coder_app" "agent_cli" { slug = local.app_slug display_name = var.cli_app_display_name - command = length(trimprefix(var.cli_command, " ")) > 0 ? "(${var.cli_command}) 2>&1 | tee -a $HOME/start.log" : "(${local.start_env_vars}\n/tmp/start.sh) 2>&1 | tee -a $HOME/start.log" + command = length(trimprefix(var.cli_command, " ")) > 0 ? var.cli_command : "${local.start_env_vars}\n/tmp/start.sh" }