Skip to content

Commit

Permalink
Flip --incompatible_windows_style_arg_escaping
Browse files Browse the repository at this point in the history
Fixes: bazelbuild#7454

RELNOTES[INC]: Flip --incompatible_windows_style_arg_escaping to true.  See bazelbuild#7454

Closes bazelbuild#7645.

Change-Id: I068de62c2d2daf92b664a1d45d80d7b2c1ffa916
PiperOrigin-RevId: 242467818
  • Loading branch information
laszlocsomor authored and emusand committed Apr 16, 2019
1 parent 476ed8e commit a28a6ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/cpp/bazel_startup_options.cc
Expand Up @@ -29,7 +29,7 @@ BazelStartupOptions::BazelStartupOptions(
use_workspace_rc(true),
use_home_rc(true),
use_master_bazelrc_(true),
incompatible_windows_style_arg_escaping(false) {
incompatible_windows_style_arg_escaping(true) {
RegisterNullaryStartupFlag("home_rc");
RegisterNullaryStartupFlag("incompatible_windows_style_arg_escaping");
RegisterNullaryStartupFlag("master_bazelrc");
Expand Down
Expand Up @@ -467,7 +467,7 @@ public String getTypeDescription() {

@Option(
name = "incompatible_windows_style_arg_escaping",
defaultValue = "false", // NOTE: purely decorative, rc files are read by the client.
defaultValue = "true", // NOTE: purely decorative, rc files are read by the client.
documentationCategory = OptionDocumentationCategory.EXECUTION_STRATEGY,
effectTags = {
OptionEffectTag.ACTION_COMMAND_LINES,
Expand Down

0 comments on commit a28a6ef

Please sign in to comment.