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{
Name: "convert",
Usage: "Transcodes other formats to JPEG and AVC",
ArgsUsage: "[path]",
ArgsUsage: "[originals subfolder (optional)]",
Action: convertAction,
}

View file

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

View file

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