Skip to content

Commit

Permalink
Flip disallow empty glob
Browse files Browse the repository at this point in the history
  • Loading branch information
limdor committed Apr 24, 2022
1 parent 1f7affa commit 5cb8456
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public final class BuildLanguageOptions extends OptionsBase {

@Option(
name = "incompatible_disallow_empty_glob",
defaultValue = "false",
defaultValue = "true",
category = "incompatible changes",
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS},
Expand Down Expand Up @@ -653,7 +653,7 @@ public StarlarkSemantics toStarlarkSemantics() {
"-incompatible_disable_target_provider_fields";
public static final String INCOMPATIBLE_DISABLE_THIRD_PARTY_LICENSE_CHECKING =
"+incompatible_disable_third_party_license_checking";
public static final String INCOMPATIBLE_DISALLOW_EMPTY_GLOB = "-incompatible_disallow_empty_glob";
public static final String INCOMPATIBLE_DISALLOW_EMPTY_GLOB = "+incompatible_disallow_empty_glob";
public static final String INCOMPATIBLE_DISALLOW_STRUCT_PROVIDER_SYNTAX =
"-incompatible_disallow_struct_provider_syntax";
public static final String INCOMPATIBLE_DO_NOT_SPLIT_LINKING_CMDLINE =
Expand Down

0 comments on commit 5cb8456

Please sign in to comment.