This commit is contained in:
35C4n0r 2026-01-20 17:19:25 +00:00
parent 9258f1857f
commit f257efd8e1

View File

@ -388,8 +388,6 @@ locals {
set -o pipefail
set -x
mkdir -p /home/coder/.claude-module
echo -n '${base64encode(local.install_script)}' | base64 -d > /tmp/install.sh
echo -n '${base64encode(local.start_script)}' | base64 -d > /tmp/start.sh
@ -418,7 +416,7 @@ resource "coder_script" "install_agent" {
agent_id = var.agent_id
display_name = "Install agent"
run_on_start = true
log_path = "/home/coder/.claude-module/install.log"
log_path = "/home/coder/install.log"
script = local.install_command
}