fix: fix: reproduce container must mount ~/.claude.json for Claude auth (#312) #328

Merged
dev-bot merged 1 commit from fix/issue-312 into main 2026-04-06 20:39:02 +00:00

View file

@ -554,6 +554,9 @@ dispatch_reproduce() {
if [ -d "${runtime_home}/.claude" ]; then
cmd+=(-v "${runtime_home}/.claude:/home/agent/.claude")
fi
if [ -f "${runtime_home}/.claude.json" ]; then
cmd+=(-v "${runtime_home}/.claude.json:/home/agent/.claude.json:ro")
fi
if [ -d "${runtime_home}/.ssh" ]; then
cmd+=(-v "${runtime_home}/.ssh:/home/agent/.ssh:ro")
fi