You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is working as intended: we're removing the distinction between bazel-bin and bazel-genfiles. Is it breaking your code in any way? Can you avoid using output_to_bindir?
Description of the problem / feature request:
genrule outputs files in both gendir and bindir irrespective of the value of output_to_bindir
Bugs: what's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
genrule(
name = "test",
srcs = [
],
output_to_bindir = False,
outs = ["test.txt"],
cmd = "echo hello > $@",
)
test.txt is in both bindir and gendir
What operating system are you running Bazel on?
ubuntu18
What's the output of
bazel info release
?release 0.26.0
BTW it works as expected in release 0.22.0 so not sure when it was broken
Have you found anything relevant by searching the web?
No
Any other information, logs, or outputs that you want to share?
No
The text was updated successfully, but these errors were encountered: