Cannot use _.source on windows
#6513
Replies: 2 comments
|
Just as an FYI, you can work around it by symlinking your bash to /c/bin/bash, but it's not really recommended. ;-) As for the long-term fix, if I understand the code correctly, it just needs to look for |
|
This should now be fixed by #11097, which was merged and will ship in the next release. The root cause was that The fix:
On GitHub Actions runners a real Git Bash is already installed, so This comment was generated by an AI coding assistant. |
Uh oh!
There was an error while loading. Please reload this page.
I have a
mise.tomlfile like this:get-version.sh
export GO_VERSION=1.25.1When I run this in GitHub actions I get an error message like this:
I think the issue is caused by this line which is not able to get the correct bash executable on windows.
All reactions