blob: bfcca3b4ec8be1fc20c50287a4eb0951ea5bd59d [file] [log] [blame]
# example/BUCK
genrule(
name = "example",
bash = "cat $SRCS > $OUT",
cmd = None,
cmd_exe = None,
out = "baz.txt",
srcs = [
"foo.txt",
"bar.txt",
],
deps = [
"//fake:rule",
],
visibility = [
"PUBLIC",
],
)