fix
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
2024-03-11 16:07:15 +01:00
parent 114bdc5ce9
commit 7d80f4d56b
5 changed files with 17 additions and 25 deletions

View File

@ -287,10 +287,10 @@ var appBackupCommand = cli.Command{
Aliases: []string{"b"},
Usage: "Manage app backups",
ArgsUsage: "<domain>",
Subcommands: []cli.Command{
appBackupListCommand,
appBackupSnapshotsCommand,
appBackupDownloadCommand,
appBackupCreateCommand,
Subcommands: []*cli.Command{
&appBackupListCommand,
&appBackupSnapshotsCommand,
&appBackupDownloadCommand,
&appBackupCreateCommand,
},
}