mirror of
https://github.com/github/semantic.git
synced 2024-11-23 08:27:56 +03:00
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 (https://github.com/bazelbuild/bazel/issues/7093), so it suffices to ignore all the projects' `dist-newstyle` directories so that no one runs into this again.
This commit is contained in:
parent
2620cadacd
commit
ba27f8e456
17
.bazelignore
17
.bazelignore
@ -1,2 +1,19 @@
|
||||
semantic/dist-newstyle
|
||||
semantic-analysis/dist-newstyle
|
||||
semantic-ast/dist-newstyle
|
||||
semantic-codeql/dist-newstyle
|
||||
semantic-core/dist-newstyle
|
||||
semantic-go/dist-newstyle
|
||||
semantic-java/dist-newstyle
|
||||
semantic-json/dist-newstyle
|
||||
semantic-parse/dist-newstyle
|
||||
semantic-proto/dist-newstyle
|
||||
semantic-python/dist-newstyle
|
||||
semantic-ruby/dist-newstyle
|
||||
semantic-scope-graph/dist-newstyle
|
||||
semantic-source/dist-newstyle
|
||||
semantic-tags/dist-newstyle
|
||||
semantic-tsx/dist-newstyle
|
||||
semantic-typescript/dist-newstyle
|
||||
dist-newstyle
|
||||
tmp
|
||||
|
Loading…
Reference in New Issue
Block a user