Merge pull request 'fix: fix: reproduce container must mount ~/.claude.json for Claude auth (#312)' (#328) from fix/issue-312 into main
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
dev-bot 2026-04-06 20:39:02 +00:00
commit ffe763fcaa

View file

@ -554,6 +554,9 @@ dispatch_reproduce() {
if [ -d "${runtime_home}/.claude" ]; then if [ -d "${runtime_home}/.claude" ]; then
cmd+=(-v "${runtime_home}/.claude:/home/agent/.claude") cmd+=(-v "${runtime_home}/.claude:/home/agent/.claude")
fi 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 if [ -d "${runtime_home}/.ssh" ]; then
cmd+=(-v "${runtime_home}/.ssh:/home/agent/.ssh:ro") cmd+=(-v "${runtime_home}/.ssh:/home/agent/.ssh:ro")
fi fi