2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-22 12:55:18 +00:00

Add missing DisableAutoGenTag flag for commands

This commit is contained in:
Michael Eischer 2024-08-23 23:49:20 +02:00
parent e5a08e6808
commit 424740f62c
4 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,7 @@ Exit status is 11 if the repository is already locked.
Exit status is 12 if the password is incorrect.
`,
GroupID: cmdGroupDefault,
DisableAutoGenTag: true,
RunE: func(cmd *cobra.Command, args []string) error {
return runCopy(cmd.Context(), copyOptions, globalOptions, args)
},

View File

@ -32,6 +32,7 @@ var cmdDebug = &cobra.Command{
Use: "debug",
Short: "Debug commands",
GroupID: cmdGroupDefault,
DisableAutoGenTag: true,
}
var cmdDebugDump = &cobra.Command{

View File

@ -11,6 +11,7 @@ var cmdKey = &cobra.Command{
The "key" command allows you to set multiple access keys or passwords
per repository.
`,
DisableAutoGenTag: true,
GroupID: cmdGroupDefault,
}

View File

@ -8,6 +8,7 @@ var cmdRepair = &cobra.Command{
Use: "repair",
Short: "Repair the repository",
GroupID: cmdGroupDefault,
DisableAutoGenTag: true,
}
func init() {