You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The directory list for GOPATH is concatenated using envs[i] + ":" + tmpDir. But Windows needs it to be envs[i] + ";" + tmpDir since the list separator is a semicolon.
The text was updated successfully, but these errors were encountered:
I don't know GoLang good enough to know how to differentiate between the different OS and what a good solution would look like. I just changed it to semicolon for me and did go install since that fixed it for me. But I'm sure that's not the solution you want in the PR ;-)
The directory list for GOPATH is concatenated using
envs[i] + ":" + tmpDir
. But Windows needs it to beenvs[i] + ";" + tmpDir
since the list separator is a semicolon.The text was updated successfully, but these errors were encountered: