Skip to content

Commit

Permalink
Update check for existing com_google_protobuf
Browse files Browse the repository at this point in the history
I'd previously checked for an existing `protobuf` rule, not
`com_google_protobuf`. D'oh!
  • Loading branch information
mbland committed Oct 17, 2024
1 parent 3607d3c commit babdf42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scala/private/macros/scala_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def rules_scala_setup(scala_compiler_srcjar = None):
url = "https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.tar.gz",
)

if not native.existing_rule("protobuf"):
if not native.existing_rule("com_google_protobuf"):
http_archive(
name = "com_google_protobuf",
sha256 = "75be42bd736f4df6d702a0e4e4d30de9ee40eac024c4b845d17ae4cc831fe4ae",
Expand Down

0 comments on commit babdf42

Please sign in to comment.