mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-01 19:46:07 -04:00
8 lines
224 B
Text
8 lines
224 B
Text
genrule(
|
|
name = "gofumpt_bin",
|
|
srcs = ["gofumpt"],
|
|
outs = ["gofumpt_bin_out"],
|
|
cmd = "cp $< $@", # Copy the binary to the output directory.
|
|
executable = True,
|
|
visibility = ["//visibility:public"],
|
|
)
|