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
Running go mod tidy in a directory that is a soft-link does not work. Running go mod tidy from the real location does work. The only difference is the soft-link.
For example: If I have a project in /home/me/source/myproject and a softlink to that project:
ln -s source/myproject mylink
What did you expect to see?
The results of go mod tidy as it finds the modules for the project
For example:
go: finding module for package github.com/veandco/go-sdl2/sdl
go: finding module for package github.com/pkg/term/termios
go: finding module for package golang.org/x/image/draw
go: finding module for package golang.org/x/sys/unix
What did you see instead?
go: warning: "all" matched no packages
The text was updated successfully, but these errors were encountered:
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Running
go mod tidy
in a directory that is a soft-link does not work. Runninggo mod tidy
from the real location does work. The only difference is the soft-link.For example: If I have a project in
/home/me/source/myproject
and a softlink to that project:What did you expect to see?
The results of
go mod tidy
as it finds the modules for the projectFor example:
What did you see instead?
The text was updated successfully, but these errors were encountered: