Skip to content

Commit ff9faa3

Browse files
fix: use correct allow syntax
1 parent 3b45c87 commit ff9faa3

File tree

1 file changed

+1
-1
lines changed
  • registry/coder/modules/claude-code/scripts

1 file changed

+1
-1
lines changed

registry/coder/modules/claude-code/scripts/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function start_agentapi() {
106106
# Build boundary args with conditional --unprivileged flag
107107
BOUNDARY_ARGS=(--log-dir "$ARG_BOUNDARY_LOG_DIR")
108108
# Add default allowed URLs
109-
BOUNDARY_ARGS+=(--allow "*.anthropic.com" --allow "registry.npmjs.org" --allow "*.sentry.io" --allow "claude.ai" --allow "$ARG_CODER_HOST")
109+
BOUNDARY_ARGS+=(--allow "*anthropic.com" --allow "registry.npmjs.org" --allow "*sentry.io" --allow "claude.ai" --allow "$ARG_CODER_HOST")
110110

111111
# Add any additional allowed URLs from the variable
112112
if [ -n "$ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS" ]; then

0 commit comments

Comments
 (0)