Skip to content

Commit 75934f8

Browse files
committed
Bugfix command line options
1 parent be47d3c commit 75934f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

MainClass.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ private static void XicParametersParsing(string[] args)
6363
"h|help", "Prints out the options.",
6464
h => parameters.help = h != null
6565
},
66-
{
67-
"i=|input=", "The raw file input (Required). Specify this or an input directory -d",
68-
v => singleFile = v
69-
},
7066
{
7167
"d=|input_directory=",
7268
"The directory containing the raw files (Required). Specify this or an input file -i.",
7369
v => fileDirectory = v
7470
},
71+
{
72+
"i=|input=", "The raw file input (Required). Specify this or an input directory -d",
73+
v => singleFile = v
74+
},
7575
{
7676
"j=|json=",
7777
"The json input file (Required).",
@@ -83,12 +83,12 @@ private static void XicParametersParsing(string[] args)
8383
v => parameters.printJsonExample = v != null
8484
},
8585
{
86-
"o=|output=",
86+
"o=|output_directory=",
8787
"The output directory. Specify this or an output file. Specifying neither writes to the input directory.",
8888
v => outputDirectory = v
8989
},
9090
{
91-
"b=|output_file",
91+
"b=|output=",
9292
"The output file. Specify this or an output directory. Specifying neither writes to the input directory.",
9393
v => outputFile = v
9494
},

0 commit comments

Comments
 (0)