Skip to content

Commit

Permalink
Flip the flag --incompatible_no_kwargs_in_build_files
Browse files Browse the repository at this point in the history
    Fixes bazelbuild/bazel#8021

    RELNOTES: --incompatible_no_kwargs_in_build_files is enabled by default
    PiperOrigin-RevId: 250317931
  • Loading branch information
Luca Di Grazia committed Sep 4, 2022
1 parent bdc1b0c commit d0802cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ public class StarlarkSemanticsOptions extends OptionsBase implements Serializabl

@Option(
name = "incompatible_objc_framework_cleanup",
defaultValue = "true",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS},
metadataTags = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public static Builder builderWithDefaults() {
.incompatibleNoSupportToolsInActionInputs(false)
.incompatibleNoTargetOutputGroup(false)
.incompatibleNoTransitiveLoads(true)
.incompatibleObjcFrameworkCleanup(true)
.incompatibleObjcFrameworkCleanup(false)
.incompatibleRemapMainRepo(false)
.incompatibleRemoveNativeMavenJar(false)
.incompatibleRestrictNamedParams(false)
Expand Down

0 comments on commit d0802cc

Please sign in to comment.