mirror of
https://github.com/OatmealDome/Rotationator.git
synced 2026-03-21 17:34:16 -05:00
Program: Fix copy-paste error in output BYAML argument name
This commit is contained in:
parent
6e4b05d70e
commit
c19673787a
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.")
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user