-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
74771: build: put regular file at bazel-out by default r=dt a=dt Release note: none. Co-authored-by: David Taylor <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,6 @@ zcgo_flags*.go | |
build/Railroad.jar | ||
|
||
# Bazel generated symlinks | ||
/bazel-* | ||
/_bazel | ||
|
||
# Per-user .bazelrc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This placeholder file prevents bazel from writing a symlink here which points to its output dir. | ||
That symlink often causes tools that traverse the repo to get confused when they find lots of extra go files. | ||
The _bazel/out symlink points to the same thing, but go doesn't traverse into paths that start with _. |