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
Hello, go-jsonnet is still using gazelle 0.26, which generates old-style BUILD target names. For projects using newer gazelle, the default naming convention for go-jsonnet is "@com_github_google_go_jsonnet//:go-jsonnet".
Of course a small tune is possible: simply tune the build_naming_convention argument:
go_repository(
name = "com_github_google_go_jsonnet",
build_naming_convention = "go_default_library",
importpath = "github.com/google/go-jsonnet",
sum = "h1:WG4TTSARuV7bSm4PMB4ohjxe33IHT5WVTrJSU33uT4g=",
version = "v0.20.0",
)
A better fix would be similar to google/rpmpack#59, upgrade gazelle, generate the BUILD file again.
The text was updated successfully, but these errors were encountered:
Hello, go-jsonnet is still using gazelle 0.26, which generates old-style BUILD target names. For projects using newer gazelle, the default naming convention for go-jsonnet is
"@com_github_google_go_jsonnet//:go-jsonnet"
.Of course a small tune is possible: simply tune the
build_naming_convention
argument:A better fix would be similar to google/rpmpack#59, upgrade gazelle, generate the BUILD file again.
The text was updated successfully, but these errors were encountered: