CLI: Change type of import --dest flag to string #3473

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer 2023-06-13 19:00:34 +02:00
parent 53aeaffe0e
commit a7cc1e367f
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ var CopyCommand = cli.Command{
Usage: "Copies media files to originals",
ArgsUsage: "[source]",
Flags: []cli.Flag{
cli.BoolFlag{
cli.StringFlag{
Name: "dest, d",
Usage: "relative originals `PATH` to which the files should be imported",
},

View file

@ -22,7 +22,7 @@ var ImportCommand = cli.Command{
Usage: "Moves media files to originals",
ArgsUsage: "[source]",
Flags: []cli.Flag{
cli.BoolFlag{
cli.StringFlag{
Name: "dest, d",
Usage: "relative originals `PATH` to which the files should be imported",
},