diff --git a/cmd/check/check.go b/cmd/check/check.go index e4bcc156a..3c126e176 100644 --- a/cmd/check/check.go +++ b/cmd/check/check.go @@ -155,9 +155,6 @@ to check all the data. If you supply the |--checkfile HASH| flag with a valid hash name, the |source:path| must point to a text file in the SUM format. `, "|", "`") + FlagsHelp, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, RunE: func(command *cobra.Command, args []string) error { cmd.CheckArgs(2, 2, command, args) var ( diff --git a/cmd/copy/copy.go b/cmd/copy/copy.go index 6a365b252..c6e42a70e 100644 --- a/cmd/copy/copy.go +++ b/cmd/copy/copy.go @@ -83,9 +83,6 @@ recently very efficiently like this: **Note**: Use the |--dry-run| or the |--interactive|/|-i| flag to test without copying anything. `, "|", "`"), - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(2, 2, command, args) diff --git a/cmd/help.go b/cmd/help.go index 949abe45b..ecc34b63e 100644 --- a/cmd/help.go +++ b/cmd/help.go @@ -33,9 +33,6 @@ See the home page (https://rclone.org/) for installation, usage, documentation, changelog and configuration walkthroughs. `, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, PersistentPostRun: func(cmd *cobra.Command, args []string) { fs.Debugf("rclone", "Version %q finishing with parameters %q", fs.Version, os.Args) atexit.Run() diff --git a/cmd/ls/ls.go b/cmd/ls/ls.go index cecab52a0..334b12f8e 100644 --- a/cmd/ls/ls.go +++ b/cmd/ls/ls.go @@ -31,9 +31,6 @@ Eg 37600 fubuwic ` + lshelp.Help, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(1, 1, command, args) fsrc := cmd.NewFsSrc(args) diff --git a/cmd/lsd/lsd.go b/cmd/lsd/lsd.go index d6681bdad..8d79266fb 100644 --- a/cmd/lsd/lsd.go +++ b/cmd/lsd/lsd.go @@ -49,9 +49,6 @@ Or If you just want the directory names use ` + "`rclone lsf --dirs-only`" + `. ` + lshelp.Help, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { ci := fs.GetConfig(context.Background()) cmd.CheckArgs(1, 1, command, args) diff --git a/cmd/mkdir/mkdir.go b/cmd/mkdir/mkdir.go index 92922ffd2..3c99180fe 100644 --- a/cmd/mkdir/mkdir.go +++ b/cmd/mkdir/mkdir.go @@ -18,9 +18,6 @@ func init() { var commandDefinition = &cobra.Command{ Use: "mkdir remote:path", Short: `Make the path if it doesn't already exist.`, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(1, 1, command, args) fdst := cmd.NewFsDir(args) diff --git a/cmd/purge/purge.go b/cmd/purge/purge.go index 59085f83e..d41e22cf6 100644 --- a/cmd/purge/purge.go +++ b/cmd/purge/purge.go @@ -26,9 +26,6 @@ delete files. To delete empty directories only, use command **Important**: Since this can cause data loss, test first with the ` + "`--dry-run` or the `--interactive`/`-i`" + ` flag. `, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(1, 1, command, args) fdst := cmd.NewFsDir(args) diff --git a/cmd/rmdir/rmdir.go b/cmd/rmdir/rmdir.go index 20fef8314..778315be8 100644 --- a/cmd/rmdir/rmdir.go +++ b/cmd/rmdir/rmdir.go @@ -24,9 +24,6 @@ with option ` + "`--rmdirs`" + `) to do that. To delete a path and any objects in it, use [purge](/commands/rclone_purge/) command. `, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(1, 1, command, args) fdst := cmd.NewFsDir(args) diff --git a/cmd/sync/sync.go b/cmd/sync/sync.go index e9c91f2c9..33a5b0027 100644 --- a/cmd/sync/sync.go +++ b/cmd/sync/sync.go @@ -60,9 +60,6 @@ destination that is inside the source directory. **Note**: Use the ` + "`rclone dedupe`" + ` command to deal with "Duplicate object/directory found in source/destination - ignoring" errors. See [this forum post](https://forum.rclone.org/t/sync-not-clearing-duplicates/14372) for more info. `, - Annotations: map[string]string{ - "versionIntroduced": "v0.90", - }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(2, 2, command, args) fsrc, srcFileName, fdst := cmd.NewFsSrcFileDst(args)