forked from TrueCloudLab/rclone
Fix missing fs.Dir -> fs.Directory
This commit is contained in:
parent
51866fbd34
commit
f0512d1a52
1 changed files with 5 additions and 4 deletions
|
@ -232,10 +232,11 @@ func (t *test) cleanFs() error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return entries.ForDirError(func(dir *fs.Dir) error {
|
return entries.ForDirError(func(dir fs.Directory) error {
|
||||||
if fstest.MatchTestRemote.MatchString(dir.Name) {
|
remote := dir.Remote()
|
||||||
log.Printf("Purging %s%s", t.remote, dir.Name)
|
if fstest.MatchTestRemote.MatchString(remote) {
|
||||||
dir, err := fs.NewFs(t.remote + dir.Name)
|
log.Printf("Purging %s%s", t.remote, remote)
|
||||||
|
dir, err := fs.NewFs(t.remote + remote)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue