mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 17:47:21 +00:00
Correct golint warning on return
This commit is contained in:
parent
9a8d5a1bff
commit
32505c3916
@ -241,10 +241,7 @@ func (f *Finder) findInSnapshot(ctx context.Context, sn *restic.Snapshot) error
|
|||||||
debug.Log("searching in snapshot %s\n for entries within [%s %s]", sn.ID(), f.pat.oldest, f.pat.newest)
|
debug.Log("searching in snapshot %s\n for entries within [%s %s]", sn.ID(), f.pat.oldest, f.pat.newest)
|
||||||
|
|
||||||
f.out.newsn = sn
|
f.out.newsn = sn
|
||||||
if err := f.findInTree(ctx, *sn.Tree, string(filepath.Separator)); err != nil {
|
return f.findInTree(ctx, *sn.Tree, string(filepath.Separator))
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func runFind(opts FindOptions, gopts GlobalOptions, args []string) error {
|
func runFind(opts FindOptions, gopts GlobalOptions, args []string) error {
|
||||||
|
Loading…
Reference in New Issue
Block a user