We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a880a74 commit 26a1fcbCopy full SHA for 26a1fcb
DataTool/Program.cs
@@ -131,7 +131,7 @@ public static void Main() {
131
}
132
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");
+ 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
return;
136
137
@@ -189,6 +189,8 @@ private static void InitFlags(HashSet<Type> tools) {
189
FlagParser.LoadArgs();
190
191
Flags = FlagParser.Parse<ToolFlags>(full => PrintHelp(full, tools));
192
+ if (Flags == null)
193
+ return;
194
195
if (Flags.Debug) {
196
Logger.ShowDebug = true;
0 commit comments