From a3321811c1895d8a094e78e2b969075de9d7ec57 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Wed, 4 Feb 2026 15:48:22 +0000 Subject: [PATCH] chore: remove comments --- registry/coder/modules/agentapi/scripts/main.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/registry/coder/modules/agentapi/scripts/main.sh b/registry/coder/modules/agentapi/scripts/main.sh index 12a7e433..5ff346fe 100644 --- a/registry/coder/modules/agentapi/scripts/main.sh +++ b/registry/coder/modules/agentapi/scripts/main.sh @@ -122,13 +122,11 @@ ARGS=( "--term-width" "${AGENTAPI_TERM_WIDTH}" "--term-height" "${AGENTAPI_TERM_HEIGHT}" ) - -# Add optional initial prompt if [ -n "${AGENTAPI_INITIAL_PROMPT}" ]; then ARGS+=("--initial-prompt" "${AGENTAPI_INITIAL_PROMPT}") fi -# Start agentapi server with the agent-command.sh script (append logs to same file) +# Start agentapi server with the agent-command.sh script nohup agentapi "${ARGS[@]}" -- "$module_path/agent-command.sh" &>> "$module_path/agentapi-start.log" & "$module_path/scripts/agentapi-wait-for-start.sh" "${AGENTAPI_PORT}"