Skip to content

Commit

Permalink
Fix CLI help text alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Jun 25, 2024
1 parent 806a69c commit 2d7ea1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
- Add some custom CLI parameters
- Try out custom options classes
- Simplify custom parameters warning
- Fix CLI help text alignment

### 3.2.0 (2024-06-20)

Expand Down
4 changes: 2 additions & 2 deletions MPF.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ private static void DisplayHelp(string? error = null)
Console.WriteLine("CLI Options:");
Console.WriteLine("-u, --use <program> Override default dumping program");
Console.WriteLine("-d, --device <devicepath> Physical drive path (Required if no custom parameters set)");
Console.WriteLine("-f, --file \"<filepath>\" Output file path (Required if no custom parameters set)");
Console.WriteLine("-f, --file \"<filepath>\" Output file path (Required if no custom parameters set)");
Console.WriteLine("-s, --speed <speed> Override default dumping speed");
Console.WriteLine("-c, --custom \"<params>\" Custom parameters to use");
Console.WriteLine("-c, --custom \"<params>\" Custom parameters to use");
Console.WriteLine();

Console.WriteLine("Custom parameters, if used, will fully replace the default parameters.");
Expand Down

0 comments on commit 2d7ea1b

Please sign in to comment.