mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
config: make config show take "remote:" as well as "remote"
This commit is contained in:
parent
951099dbed
commit
919a180ad2
@ -6,6 +6,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"github.com/rclone/rclone/cmd"
|
||||
@ -70,7 +71,8 @@ var configShowCommand = &cobra.Command{
|
||||
if len(args) == 0 {
|
||||
config.ShowConfig()
|
||||
} else {
|
||||
config.ShowRemote(args[0])
|
||||
name := strings.TrimRight(args[0], ":")
|
||||
config.ShowRemote(name)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user