Program: Fix copy-paste error in output BYAML argument name

This commit is contained in:
OatmealDome 2024-08-09 22:11:08 -04:00
parent 6e4b05d70e
commit c19673787a
2 changed files with 4 additions and 4 deletions

View File

@ -10,11 +10,11 @@ Description:
Generates a new VSSetting BYAMl file.
Usage:
Rotationator <lastByaml> <lastByaml> [options]
Rotationator <lastByaml> <outputByaml> [options]
Arguments:
<lastByaml> The last VSSetting BYAML file.
<lastByaml> The output VSSetting BYAML file.
<outputByaml> The output VSSetting BYAML file.
Options:
--version Show version information

View File

@ -1,4 +1,4 @@
using System.CommandLine;
using System.CommandLine;
using System.Text.Json;
using OatmealDome.BinaryData;
using OatmealDome.NinLib.Byaml;
@ -60,7 +60,7 @@ Random random = new Random();
Argument<string> lastByamlArg = new Argument<string>("lastByaml", "The last VSSetting BYAML file.");
Argument<string> outputByamlArg = new Argument<string>("lastByaml", "The output VSSetting BYAML file.");
Argument<string> outputByamlArg = new Argument<string>("outputByaml", "The output VSSetting BYAML file.");
Command command = new RootCommand("Generates a new VSSetting BYAMl file.")
{