mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-27 16:39:38 -05:00
daae4f8746
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
9 lines
224 B
Plaintext
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"],
|
|
)
|