mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-16 09:57:07 -05:00
9 lines
230 B
Plaintext
9 lines
230 B
Plaintext
|
genrule(
|
||
|
name = "terraform_bin",
|
||
|
srcs = ["terraform"],
|
||
|
outs = ["terraform_bin_out"],
|
||
|
cmd = "cp $< $@", # Copy the binary to the output directory.
|
||
|
executable = True,
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|