Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_python
/
aa86b8907dd90bc3328dcf5d49a046047a1043ff
/
.
/
examples
/
fix-visibility
/
foo
/
BUILD.bazel
blob: 4c7d2a10d1b373fb207f548b63d8fc2a759630dd [
file
]
genrule
(
name
=
"foo"
,
srcs
=
[
"//bar"
],
outs
=
[
"foo.sh"
],
cmd
=
"echo '#!/bin/sh\ncat $(execpath //bar)' > '$@'"
,
executable
=
True
,
visibility
=
[
"//visibility:public"
],
)