Skip to content

Commit

Permalink
Change default exclude to nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyman192 committed Jan 9, 2025
1 parent c517d80 commit de7ad5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MBINCompiler/Source/CommandLineOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ internal set {
"glob patterns. A glob pattern is a filepath with wildcards." +
"The * and ? wildcard characters can be used.\n" +
"Multiple glob patterns are separated by a semicolon.\n" +
"The default is --exclude=\"LANGUAGE\\*;*.GEOMETRY.*\".\n" +
"The default is --exclude=\"\" (nothing).\n" +
"The --exclude filter is applied after --include." },

new Option { shortName = 'V', longName = "format-version", param = "[0|1|2]", isHidden = true,
Expand Down
2 changes: 1 addition & 1 deletion MBINCompiler/Source/Commands/ConvertMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public override int ExecuteCommand( CommandLineParser options ) {
defaultInclude = (InputFormat == FormatType.MBIN) ? "*.MBIN;*.MBIN.PC" : "*.MXML";
}

var defaultExclude = @"LANGUAGE\*;*.GEOMETRY.*";
var defaultExclude = @"";

//#if DEBUG
//defaultExclude = "";
Expand Down

0 comments on commit de7ad5c

Please sign in to comment.