From 908709a8d6dc31f3f969e620cfda3f88f6b5956e Mon Sep 17 00:00:00 2001 From: Andre Schoengraf Date: Sun, 7 Apr 2024 22:48:49 +0200 Subject: [PATCH] cmdline options changed --- MainClass.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/MainClass.cs b/MainClass.cs index 4ccf364..b563982 100644 --- a/MainClass.cs +++ b/MainClass.cs @@ -63,15 +63,15 @@ private static void XicParametersParsing(string[] args) "h|help", "Prints out the options.", h => parameters.help = h != null }, - { - "i=|input=", "The raw file input (Required). Specify this or an input directory -d", - v => singleFile = v - }, { "d=|input_directory=", "The directory containing the raw files (Required). Specify this or an input file -i.", v => fileDirectory = v }, + { + "i=|input=", "The raw file input (Required). Specify this or an input directory -d", + v => singleFile = v + }, { "j=|json=", "The json input file (Required).", @@ -83,12 +83,12 @@ private static void XicParametersParsing(string[] args) v => parameters.printJsonExample = v != null }, { - "o=|output=", + "o=|output_directory=", "The output directory. Specify this or an output file. Specifying neither writes to the input directory.", v => outputDirectory = v }, { - "b=|output_file", + "b=|output=", "The output file. Specify this or an output directory. Specifying neither writes to the input directory.", v => outputFile = v }, @@ -103,7 +103,7 @@ private static void XicParametersParsing(string[] args) v => parameters.stdout = v != null }, { - "w|warningsAreErrors", "Return non-zero exit code for warnings; default only for errors", + "w|warningsAreErrors", "Return non-zero exit code for warnings; default only for errors", v => parameters.Vigilant = v != null }, {