Skip to content

Commit fd63258

Browse files
fix(crawl4ai): patch token placeholder in force/fresh prep block too
The previous fix only added the {{CRAWL4AI_API_TOKEN}} sed replacement to the update-mode prep loop (new workflows only). The force/fresh prep block — used by `setup.sh --force` and fresh installs — was missing the line, so the placeholder stayed unreplaced in the deployed Web Reader node (every other placeholder got replaced, only the token did not). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 664ea3b commit fd63258

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

setup.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,6 +1251,7 @@ for f in workflows/*.json workflows/adapters/*.json; do
12511251
-e "s|{{TELEGRAM_CHAT_ID}}|${TELEGRAM_CHAT_ID}|g" \
12521252
-e "s|{{CREDENTIAL_FORM_WEBHOOK_ID}}|${CREDENTIAL_FORM_WEBHOOK_ID}|g" \
12531253
-e "s|{{WEBHOOK_SECRET}}|${WEBHOOK_SECRET}|g" \
1254+
-e "s|{{CRAWL4AI_API_TOKEN}}|${CRAWL4AI_API_TOKEN}|g" \
12541255
-e "s|{{PAPERCLIP_INTERNAL_URL}}|${PAPERCLIP_INTERNAL_URL}|g" \
12551256
-e "s|{{PAPERCLIP_AGENT_KEY}}|${PAPERCLIP_AGENT_KEY}|g" \
12561257
-e "s|{{TELEGRAM_BOT_TOKEN}}|${TELEGRAM_BOT_TOKEN}|g" \

0 commit comments

Comments
 (0)