forked from TrueCloudLab/restic
Fix 'ls' command
CmdLs needs to implement flags.Commander, so change (CmdLs) Execute to only take a []string to get actually called.
This commit is contained in:
parent
aa8f1c680e
commit
190b1cdcc7
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ func (cmd CmdLs) Usage() string {
|
|||
return "snapshot-ID [DIR]"
|
||||
}
|
||||
|
||||
func (cmd CmdLs) Execute(s restic.Server, key *restic.Key, args []string) error {
|
||||
func (cmd CmdLs) Execute(args []string) error {
|
||||
if len(args) < 1 || len(args) > 2 {
|
||||
return fmt.Errorf("wrong number of arguments, Usage: %s", cmd.Usage())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue