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
MacOS has a case-insensitive filesystem, which means mkdir build; echo "" > BUILD fails. This prevents the Skylark rules in tools/build_defs/repo/git.bzl from working with external repositories that have an existing build/ directory for legacy reasons.
In #552, a workaround was added to Bazel such that a file BUILD.bazel is also acceptable. Can you please change git.bzl to use this filename when writing its stub build rules?
MacOS has a case-insensitive filesystem, which means
mkdir build; echo "" > BUILD
fails. This prevents the Skylark rules intools/build_defs/repo/git.bzl
from working with external repositories that have an existingbuild/
directory for legacy reasons.In #552, a workaround was added to Bazel such that a file
BUILD.bazel
is also acceptable. Can you please changegit.bzl
to use this filename when writing its stub build rules?The text was updated successfully, but these errors were encountered: