aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ulfjack <ulfjack@google.com>2017-06-02 09:09:43 +0200
committerGravatar László Csomor <laszlocsomor@google.com>2017-06-02 15:27:21 +0200
commit171314b2ef9a7fd361a889b88dea20b493d77bf7 (patch)
tree75c890d0bc8ef4bc07a542c0f06c8754a653f7e4
parent96180fa5de610990f7ab6df5906b6deb5636df9c (diff)
Update documentation for --output_filter and --auto_output_filter
PiperOrigin-RevId: 157809651
-rw-r--r--site/docs/blaze-user-manual.html19
1 files changed, 11 insertions, 8 deletions
diff --git a/site/docs/blaze-user-manual.html b/site/docs/blaze-user-manual.html
index 782f5ef7b9..b8719c2b2c 100644
--- a/site/docs/blaze-user-manual.html
+++ b/site/docs/blaze-user-manual.html
@@ -1107,16 +1107,13 @@ $ bazel fetch //...
The <code class='flag'>--output_filter</code> option will only show build and compilation
warnings for targets that match the regular expression. If a target does not
match the given regular expression and its execution succeeds, its standard
- output and standard error are thrown away. This option is intended to be used
- to help focus efforts on fixing warnings in packages under development. Here
- are some typical values for this option:
+ output and standard error are thrown away.
+</p>
+<p>
+ Here are some typical values for this option:
</p>
<table>
<tr>
- <td><code class='flag'>--output_filter=</code></td>
- <td>Show all output.</td>
- </tr>
- <tr>
<td><code class='flag'>--output_filter='^//(first/project|second/project):'</code></td>
<td>Show the output for the specified packages.</td>
</tr>
@@ -1125,8 +1122,14 @@ $ bazel fetch //...
<td>Don't show output for the specified packages.</td>
</tr>
<tr>
+ <td><code class='flag'>--output_filter=</code></td>
+ <td>Show everthing.
+ </td>
+ </tr>
+ <tr>
<td><code class='flag'>--output_filter=DONT_MATCH_ANYTHING</code></td>
- <td>Don't show output.</td>
+ <td>Show nothing.
+ </td>
</tr>
</table>