constellation/bazel/toolchains/BUILD.shellcheck.bazel
Paul Meyer 0fc15b2393 bazel: add shellcheck to //:check
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-03-16 11:13:14 -04:00

9 lines
233 B
Plaintext

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