is there a way to have a multi-line string argumen...
# general
b
is there a way to have a multi-line string argument in a BUILD file ? It's a hook for generated files content. Reading the python doc I found
\
so I tried the following:
Copy code
my_target(
hook="\
foo\
bar\
baz"
)
which end producing "foo\ bar\ baz" in my generated file