docs: fix rclone config edit docs
This commit is contained in:
parent
3f3c5f3ff4
commit
fb6a9dfbf3
1 changed files with 4 additions and 1 deletions
|
@ -61,7 +61,10 @@ var configEditCommand = &cobra.Command{
|
||||||
Annotations: map[string]string{
|
Annotations: map[string]string{
|
||||||
"versionIntroduced": "v1.39",
|
"versionIntroduced": "v1.39",
|
||||||
},
|
},
|
||||||
Run: configCommand.Run,
|
RunE: func(command *cobra.Command, args []string) error {
|
||||||
|
cmd.CheckArgs(0, 0, command, args)
|
||||||
|
return config.EditConfig(context.Background())
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
var configFileCommand = &cobra.Command{
|
var configFileCommand = &cobra.Command{
|
||||||
|
|
Loading…
Reference in a new issue