Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure dist-newstyle directories are ignored everywhere.
@tclem ran into an issue where he had built `semantic-source` from the `semantic-source` directory; `cabal` placed a `dist-newstyle` directory there, which was fouling up Bazel due to the fact that `cabal` generates binary files called `BUILD`, and Bazel tries to interpret these files as package configurations. Not good! We can't use a glob here because .bazelignore files don't support globbing (bazelbuild/bazel#7093), so it suffices to ignore all the projects' `dist-newstyle` directories so that no one runs into this again.
- Loading branch information