mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-04-25 17:45:53 +03:00
[GH-ISSUE #114] Path issue in windows doesn't mount the repo correctly #39
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shannon-KeygraphHQ#39
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ezl-keygraph on GitHub (Feb 10, 2026).
Original GitHub issue: https://github.com/KeygraphHQ/shannon/issues/114
If its a windows machine then MSYS_NO_PATHCONV=1 before docker compose in https://github.com/KeygraphHQ/shannon/blob/main/shannon#L213
https://discord.com/channels/1423863500379525222/1442631463504969858/1470724916847313120
@neowc commented on GitHub (Feb 11, 2026):
For my case of running under windows (VScode gitbash terminal), I did clone my code repo to local folder inside shannon folder,
./shannon start URL=https://your-app.com REPO=your-repo-folder-nameThen I did a check on repo if passed in properly in my modified shannon script at #line141,
Then try install @anthropic-ai/claude-code at #line116 of Dockerfile,
so far it works fine for me thanks
@ezl-keygraph commented on GitHub (Feb 11, 2026):
@neowc Can you confirm if placing the repo inside the
./reposfolder in shannon solved the issues without usingMSYS_NO_PATHCONV=1?@klass-723 commented on GitHub (Feb 11, 2026):
We use Symlinks on Windows WSL, and it worked for us
Symlink your repo
ln -s ~/projects/REPONAME repos/REPONAME
Then we added this in docker-compose.yml
Whatever your repo is on your machine. Yours will be different than mine
@neowc commented on GitHub (Feb 11, 2026):
hi @ezl-keygraph if remove
MSYS_NO_PATHCONV=1the path mangling still cause the Claude Code spawn error(below pic).@ezl-keygraph commented on GitHub (Feb 11, 2026):
@neowc I think you are not on the latest version of shannon because currently we only support if the target repo is inside the
./reposfolder in shannon. Correct me if I'm wrong@neowc commented on GitHub (Feb 11, 2026):
hi @ezl-keygraph i just did a fresh setup & pull of the latest version, and also placed the target repo inside the ./repos folder in shannon, however the issue still encounter (see pics below)
Before without
MSYS_NO_PATHCONV=1After add
MSYS_NO_PATHCONV=1at line #229@ezl-keygraph commented on GitHub (Feb 11, 2026):
Thanks for sharing @neowc, appreciate it
@ezl-keygraph commented on GitHub (Feb 13, 2026):
Temporary workaround
https://github.com/KeygraphHQ/shannon/issues/130#issuecomment-3897045082