aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2018-01-22 12:05:45 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-01-22 12:07:40 -0800
commit454485877e7456ffe4831633333ae533fd57d3e9 (patch)
tree16f2c7572940cc64e0d89e5af4f8c5074a42a03e /src/main/java
parentec41eaea04b3ee39f0457a51a05eabf4d84431fd (diff)
Use the new option categories by default
Bazel help output will now use the new categories by default, including for the generated html documentation at https://bazel.build/versions/master/docs/command-line-reference.html Issue #3758 - this switches to the new categories, but the grouping is still by command, which leads to duplicate options RELNOTES: None PiperOrigin-RevId: 182815006
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java
index 8b1d9a8f03..1e163e295e 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java
@@ -118,7 +118,7 @@ public final class HelpCommand implements BlazeCommand {
@Option(
name = "use_new_category_enum",
- defaultValue = "false",
+ defaultValue = "true",
documentationCategory = OptionDocumentationCategory.LOGGING,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS, OptionEffectTag.TERMINAL_OUTPUT},
metadataTags = {OptionMetadataTag.EXPERIMENTAL}