CLI: Remove "(optional)" from command argument help #1735

Should be clear enough like that.
This commit is contained in:
Michael Mayer 2021-12-02 13:57:32 +01:00
parent 333825f973
commit d0a291a679
3 changed files with 4 additions and 4 deletions

View file

@ -16,8 +16,8 @@ import (
// ConvertCommand registers the convert cli command.
var ConvertCommand = cli.Command{
Name: "convert",
Usage: "Transcodes other formats to JPEG and AVC",
ArgsUsage: "[originals subfolder (optional)]",
Usage: "Converts files in other formats to JPEG and AVC",
ArgsUsage: "[originals subfolder]",
Action: convertAction,
}

View file

@ -53,7 +53,7 @@ var FacesCommand = cli.Command{
{
Name: "index",
Usage: "Searches originals for faces",
ArgsUsage: "[originals subfolder (optional)]",
ArgsUsage: "[originals subfolder]",
Action: facesIndexAction,
},
{

View file

@ -21,7 +21,7 @@ import (
var IndexCommand = cli.Command{
Name: "index",
Usage: "Indexes original media files",
ArgsUsage: "[originals subfolder (optional)]",
ArgsUsage: "[originals subfolder]",
Flags: indexFlags,
Action: indexAction,
}