CLI: Update count flag usage in commands.go, find.go, and vision_run.go

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2025-08-10 14:41:51 +02:00
parent 6655a66e8f
commit c22c5c0151
3 changed files with 4 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ var PhotoPrism = []*cli.Command{
var CountFlag = &cli.UintFlag{
Name: "count",
Aliases: []string{"n"},
Usage: "`LIMIT` number of results",
Usage: "maximum `NUMBER` of results",
Value: 100,
}

View File

@@ -22,7 +22,7 @@ var FindCommand = &cli.Command{
Flags: append(report.CliFlags, &cli.UintFlag{
Name: "count",
Aliases: []string{"n"},
Usage: "maximum number of search `RESULTS`",
Usage: "maximum `NUMBER` of results",
Value: 10000,
}),
Action: findAction,

View File

@@ -26,8 +26,8 @@ var VisionRunCommand = &cli.Command{
},
&cli.IntFlag{
Name: "count",
Aliases: []string{"c"},
Usage: "maximum number of pictures to be processed",
Aliases: []string{"n"},
Usage: "maximum `NUMBER` of pictures to be processed",
Value: search.MaxResults,
},
&cli.StringFlag{