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 {
|
||||
return err
|
||||
}
|
||||
return entries.ForDirError(func(dir *fs.Dir) error {
|
||||
if fstest.MatchTestRemote.MatchString(dir.Name) {
|
||||
log.Printf("Purging %s%s", t.remote, dir.Name)
|
||||
dir, err := fs.NewFs(t.remote + dir.Name)
|
||||
return entries.ForDirError(func(dir fs.Directory) error {
|
||||
remote := dir.Remote()
|
||||
if fstest.MatchTestRemote.MatchString(remote) {
|
||||
log.Printf("Purging %s%s", t.remote, remote)
|
||||
dir, err := fs.NewFs(t.remote + remote)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue