fixed argument parser
This commit is contained in:
@@ -14,17 +14,17 @@ try
|
||||
string? searchQuery = null;
|
||||
|
||||
new LaunchArgumentParser(
|
||||
new LaunchArgument(["-i", "--input"],
|
||||
new LaunchArgument(["i", "input"],
|
||||
"Set input file path",
|
||||
s => inputPath = s,
|
||||
"gamestate or zip file"),
|
||||
|
||||
new LaunchArgument(["-o", "--output"],
|
||||
new LaunchArgument(["o", "output"],
|
||||
"Set output file path",
|
||||
s => outputPath = s,
|
||||
"json file [default=stdout]"),
|
||||
|
||||
new LaunchArgument(["-s", "--search"],
|
||||
new LaunchArgument(["s", "search"],
|
||||
"Search in input file",
|
||||
s =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user