Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bot/scripts/run-cron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ unset ANTHROPIC_API_KEY
export CLAUDE_CODE_DISABLE_AUTO_MEMORY=1
export CLAUDE_CODE_DISABLE_BACKGROUND_TASKS=1
export CLAUDE_CODE_DISABLE_CRON=1
export CLAUDE_CODE_SIMPLE=1
export CLAUDE_CODE_ENABLE_TELEMETRY=1

TASK_NAME="${1:?Usage: run-cron.sh <task-name>}"
Expand Down
1 change: 0 additions & 1 deletion bot/src/cron-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ function runClaude(cron: CronJob, workspaceCwd: string): string {
env.CLAUDE_CODE_DISABLE_AUTO_MEMORY = "1";
env.CLAUDE_CODE_DISABLE_BACKGROUND_TASKS = "1";
env.CLAUDE_CODE_DISABLE_CRON = "1";
env.CLAUDE_CODE_SIMPLE = "1";

const output = execSync(args.map(shellEscape).join(" "), {
encoding: "utf8",
Expand Down
Loading