Adding the following to `go-core.bash` would avoid some nasty surprises: ```bash if [[ "$OSTYPE" == 'msys' ]]; then export MSYS_NO_PATHCONV='true' export MSYS2_ARG_CONV_EXCL='*' fi ``` per: [How to stop mingw and msys from mangling path names given at the command line? (Stack Overflow)](https://stackoverflow.com/questions/7250130/how-to-stop-mingw-and-msys-from-mangling-path-names-given-at-the-command-line#34386471) This may have ramifications for the `./go get` command, though I'm not sure yet.