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
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
This commit is contained in:
commit
ffe763fcaa
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue