CLI: Improve backup and restore commands

This commit is contained in:
Michael Mayer
2021-10-07 13:27:49 +02:00
parent a7b6107d5e
commit 8f55d6f841
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ import (
var BackupCommand = cli.Command{
Name: "backup",
Usage: "Creates index database dumps and optional YAML album backups",
UsageText: `A custom index sql backup FILENAME may be passed as first argument. Use - for stdout. By default, the backup path is searched.`,
UsageText: `A custom database SQL dump FILENAME may be passed as first argument. Use - for stdout. The backup paths will be detected automatically if not provided.`,
Flags: backupFlags,
Action: backupAction,
}