echo version in the version check

This commit is contained in:
Tony Aiuto 2023-02-09 10:46:46 -05:00
parent ce09fb7f5c
commit b1fe119ea4
1 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,10 @@ package(default_visibility = ["//visibility:private"])
# run linux, so we will still catch a mismatch.
genrule(
name = "versions_match",
cmd = """grep 'version = "%s",' $(location //:MODULE.bazel) >$(location :found_it)""" % version,
cmd = ";\n".join([
"""echo version: %s""" % version,
"""grep 'version = "%s",' $(location //:MODULE.bazel) >$(location :found_it)""" % version,
]),
outs = ["found_it"],
tools = [
"//:MODULE.bazel",