forked from TrueCloudLab/restic
Fix ls command
Added missing loadindex call. Also fixed the recursive call to use the subtree to stop infinte recursion.
This commit is contained in:
parent
92de007900
commit
e8615eb593
1 changed files with 6 additions and 1 deletions
|
@ -48,7 +48,7 @@ func printTree(prefix string, s *server.Server, id backend.ID) error {
|
|||
fmt.Println(printNode(prefix, entry))
|
||||
|
||||
if entry.Type == "dir" && entry.Subtree != nil {
|
||||
err = printTree(filepath.Join(prefix, entry.Name), s, id)
|
||||
err = printTree(filepath.Join(prefix, entry.Name), s, entry.Subtree)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -72,6 +72,11 @@ func (cmd CmdLs) Execute(args []string) error {
|
|||
return err
|
||||
}
|
||||
|
||||
err = s.LoadIndex()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
name, err := backend.FindSnapshot(s, args[0])
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue