mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
9 lines
242 B
Plaintext
9 lines
242 B
Plaintext
|
genrule(
|
||
|
name = "golangci_lint_bin",
|
||
|
srcs = ["golangci-lint"],
|
||
|
outs = ["golangci_lint_bin_out"],
|
||
|
cmd = "cp $< $@", # Copy the binary to the output directory.
|
||
|
executable = True,
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|