Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmdline options changed #179

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions MainClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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).",
Expand All @@ -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
},
Expand All @@ -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
},
{
Expand Down