constellation/bazel/toolchains/BUILD.tfsec.bazel

9 lines
218 B
Plaintext
Raw Normal View History

genrule(
name = "tfsec_bin",
srcs = ["tfsec"],
outs = ["tfsec_bin_out"],
cmd = "cp $< $@", # Copy the binary to the output directory.
executable = True,
visibility = ["//visibility:public"],
)