@@ -19,14 +19,14 @@ public static class ConsoleConvert
1919
2020 private static string ScrubModeNone = "None" ;
2121 private static string ScrubModeScrub = "Scrub" ;
22- private static string ScrubModeTrimmedScrub = "TrimmedScrub " ;
22+ private static string ScrubModeTrimScrub = "TrimScrub " ;
2323
2424 public static OptionSet GetOptions ( )
2525 {
2626 return new OptionSet {
2727 { "i|input=" , "Input file" , i => Input = i } ,
28- { "s|scrub=" , "Scrub mode (None *default*, Scrub, TrimmedScrub)" , s => ScrubMode = s } ,
2928 { "c|compress=" , "Compress (None *default*, CCI)" , c => CompressType = c } ,
29+ { "s|scrub=" , "Scrub (None *default*, Scrub, TrimScrub)" , s => ScrubMode = s } ,
3030 { "n|nosplit" , "No Split of output file" , n => NoSplit = n != null } ,
3131 { "h|help" , "show help" , h => ShowHelp = h != null } ,
3232 { "w|wait" , "Wait on exit" , w => Wait = w != null } ,
@@ -85,11 +85,11 @@ public static void Process(string version, string[] args)
8585 scrub = true ;
8686 outputSuffix = "-Scrub" ;
8787 }
88- else if ( string . Equals ( ScrubMode , ScrubModeTrimmedScrub , StringComparison . CurrentCultureIgnoreCase ) )
88+ else if ( string . Equals ( ScrubMode , ScrubModeTrimScrub , StringComparison . CurrentCultureIgnoreCase ) )
8989 {
9090 scrub = true ;
9191 trimmedScrub = true ;
92- outputSuffix = "-TrimmedScrub " ;
92+ outputSuffix = "-TrimScrub " ;
9393 }
9494 else if ( ! string . Equals ( ScrubMode , ScrubModeNone , StringComparison . CurrentCultureIgnoreCase ) )
9595 {
0 commit comments