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
According to bazelbuild/bazel#552, BUILD.bazel is a valid name for BUILD file, but unused_deps called on the target with BUILD.bazel file tries to open BUILD and fails:
2018/02/08 19:00:32 open /some/path/BUILD: no such file or directory when parsing /some/path/BUILD
The text was updated successfully, but these errors were encountered:
Before, we would only support BUILD files. Now, we check if the BUILD
file exists, if not we add the .bazel extension and return that.
This fixesbazelbuild#204
This fixesbazelbuild#441
Before, we would only support BUILD files. Now, we check if the BUILD
file exists, if not we add the .bazel extension and return that.
This fixes#204
This fixes#441
According to bazelbuild/bazel#552,
BUILD.bazel
is a valid name for BUILD file, butunused_deps
called on the target withBUILD.bazel
file tries to openBUILD
and fails:The text was updated successfully, but these errors were encountered: