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
Obviously the built-in go version cmd in 1.16.13 can successfully extract the module info:
$ go version -m kured | head -5
kured: go1.16.13
path github.com/weaveworks/kured/cmd/kured
mod github.com/weaveworks/kured v0.0.0-20220106181305-2b36eab0f829 h1:gkiQx0LbROxAqRgcqLqO8dnKWWmbuHpOwwbOl9Numcc=
dep github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=
dep github.com/PuerkitoBio/purell v1.1.1 h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=
And similarly if I use Filo Sottile's version that rewrites atop the internal/version pkg (#17) then that can also read it:
$ goversion -m kured | head -5
kured go1.16.13
path github.com/weaveworks/kured/cmd/kured
mod github.com/weaveworks/kured v0.0.0-20220106181305-2b36eab0f829
dep github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
dep github.com/PuerkitoBio/purell v1.1.1
The text was updated successfully, but these errors were encountered:
rsc.io/[email protected] fails to extract the module info in this scenario:
Obviously the built-in
go version
cmd in 1.16.13 can successfully extract the module info:And similarly if I use Filo Sottile's version that rewrites atop the internal/version pkg (#17) then that can also read it:
The text was updated successfully, but these errors were encountered: