Merge pull request #2416 from gongguan/not-ignore-error

fix GetDirUsage error ignored
This commit is contained in:
David Ashpole 2020-03-04 09:08:16 -08:00 committed by GitHub
commit 820136cdba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -608,7 +608,7 @@ func GetDirUsage(dir string) (UsageInfo, error) {
return nil
})
return usage, nil
return usage, err
}
func (self *RealFsInfo) GetDirUsage(dir string) (UsageInfo, error) {