1
0
mirror of https://github.com/minio/mc.git synced 2025-11-16 11:02:34 +03:00

fix dir listing bug and find style output

This commit is contained in:
Anand Babu (AB) Periasamy
2015-04-23 12:50:08 -07:00
parent 256d7c4443
commit 0a50606cbd
3 changed files with 5 additions and 7 deletions

View File

@@ -119,15 +119,13 @@ func (f *fsClient) List() (items []*client.Item, err error) {
}
return err // fatal
}
if fi.IsDir() {
return nil // not a fs skip
}
// trim f.path
item := &client.Item{
Name: strings.TrimPrefix(fp, f.path+string(filepath.Separator)),
// Name: strings.TrimPrefix(fp, f.path+string(filepath.Separator)),
Name: fp,
Time: fi.ModTime(),
Size: fi.Size(),
}
items = append(items, item)
return nil
}