constellation/bazel/toolchains/BUILD.gofumpt.bazel

9 lines
224 B
Plaintext
Raw Normal View History

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