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

9 lines
224 B
Plaintext

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