fix: fix: reproduce container must mount ~/.claude.json for Claude auth (#312)
This commit is contained in:
parent
3775697e4f
commit
2b0f4f01d7
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue