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
GoMod.kt constructs the dependency tree based on the module graph obtained via go mod graph.
It turned out that the module graph only contains edges defined in any go.mod file of any transitive dependency [1]. So, there are no edges for the dependencies of any module without a go.mod file.
The problem is reproduced by a functional test added by [2].
GoMod.kt
constructs the dependency tree based on the module graph obtained viago mod graph
.It turned out that the module graph only contains edges defined in any
go.mod
file of any transitive dependency [1]. So, there are no edges for the dependencies of any module without ago.mod
file.The problem is reproduced by a functional test added by [2].
[1] golang/go#50656 (comment)
[2] #10102
The text was updated successfully, but these errors were encountered: