2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

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:
Sebastian Schmidt 2015-01-01 11:17:34 +01:00
parent aa8f1c680e
commit 190b1cdcc7

View File

@ -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())
}