File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ public static void Main() {
131
131
}
132
132
133
133
if ( extractFlags . OutputPath . StartsWith ( "{" ) || extractFlags . OutputPath . EndsWith ( "}" ) ) {
134
- Logger . Error ( "Core" , "Do not include {{ or } } in the output directory you pass to the tool. The path should be surrounded with quotation marks only" ) ;
134
+ Logger . Error ( "Core" , "Do not include { or } in the output directory you pass to the tool. The path should be surrounded with quotation marks only" ) ;
135
135
return ;
136
136
}
137
137
}
@@ -189,6 +189,8 @@ private static void InitFlags(HashSet<Type> tools) {
189
189
FlagParser . LoadArgs ( ) ;
190
190
191
191
Flags = FlagParser . Parse < ToolFlags > ( full => PrintHelp ( full , tools ) ) ;
192
+ if ( Flags == null )
193
+ return ;
192
194
193
195
if ( Flags . Debug ) {
194
196
Logger . ShowDebug = true ;
You can’t perform that action at this time.
0 commit comments