constellation/bazel/toolchains/BUILD.tfsec.bazel
Paul Meyer 0f6e56badf bazel: get tfsec as binary download
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-03-20 11:17:16 -04:00

9 lines
218 B
Plaintext

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