CLI: Replace [path] with [originals subfolder (optional)] in help #1735

This commit is contained in:
Michael Mayer 2021-12-02 13:30:47 +01:00
parent 2e1295e304
commit 333825f973
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ import (
var ConvertCommand = cli.Command{ var ConvertCommand = cli.Command{
Name: "convert", Name: "convert",
Usage: "Transcodes other formats to JPEG and AVC", Usage: "Transcodes other formats to JPEG and AVC",
ArgsUsage: "[path]", ArgsUsage: "[originals subfolder (optional)]",
Action: convertAction, Action: convertAction,
} }

View file

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

View file

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