Config: Change position of cache-path command flag

This commit is contained in:
Michael Mayer
2021-10-11 23:25:49 +02:00
parent c3671a8025
commit 2eb2e91995
3 changed files with 7 additions and 7 deletions

View File

@@ -45,9 +45,9 @@ func configAction(ctx *cli.Context) error {
fmt.Printf("%-25s %d\n", "originals-limit", conf.OriginalsLimit())
fmt.Printf("%-25s %s\n", "import-path", conf.ImportPath())
fmt.Printf("%-25s %s\n", "storage-path", conf.StoragePath())
fmt.Printf("%-25s %s\n", "cache-path", conf.CachePath())
fmt.Printf("%-25s %s\n", "sidecar-path", conf.SidecarPath())
fmt.Printf("%-25s %s\n", "albums-path", conf.AlbumsPath())
fmt.Printf("%-25s %s\n", "cache-path", conf.CachePath())
fmt.Printf("%-25s %s\n", "temp-path", conf.TempPath())
fmt.Printf("%-25s %s\n", "backup-path", conf.BackupPath())
fmt.Printf("%-25s %s\n", "assets-path", conf.AssetsPath())