mirror of https://github.com/bazelbuild/platforms
echo version in the version check
This commit is contained in:
parent
ce09fb7f5c
commit
b1fe119ea4
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue