Skip to content

Commit cbc415d

Browse files
committed
CLI: Correct indentation of backup and restore command descriptions
Signed-off-by: Michael Mayer <[email protected]>
1 parent 71a623b commit cbc415d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

internal/commands/backup.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
)
1616

1717
const backupDescription = `A custom filename for the database backup (or - to send the backup to stdout) can optionally be passed as argument.
18-
The --database flag can be omitted in this case. When using Docker, please run the docker command with the -T flag
19-
to prevent log messages from being sent to stdout. If nothing else is specified, the database and album backup paths
20-
will be automatically determined based on the current configuration.`
18+
The --database flag can be omitted in this case. When using Docker, please run the docker command with the -T flag
19+
to prevent log messages from being sent to stdout. If nothing else is specified, the database and album backup paths
20+
will be automatically determined based on the current configuration.`
2121

2222
// BackupCommand configures the command name, flags, and action.
2323
var BackupCommand = &cli.Command{

internal/commands/restore.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
)
1515

1616
const restoreDescription = `A custom filename for the database backup (or - to read the backup from stdin) can optionally be passed as argument.
17-
The --database flag can be omitted in this case. If nothing else is specified, the database and album backup paths
18-
will be automatically determined based on the current configuration.`
17+
The --database flag can be omitted in this case. If nothing else is specified, the database and album backup paths
18+
will be automatically determined based on the current configuration.`
1919

2020
// RestoreCommand configures the command name, flags, and action.
2121
var RestoreCommand = &cli.Command{

0 commit comments

Comments
 (0)