local, fs: --exclude-if-present ignores directories which it doesn't have permission for - fixes #1959

This commit is contained in:
Iakov Davydov 2018-01-16 21:00:16 +01:00 committed by Nick Craig-Wood
parent ad76dd0adc
commit acd55a8f65
2 changed files with 5 additions and 1 deletions

View file

@ -178,6 +178,9 @@ func (f *Fs) newObjectWithInfo(remote, dstPath string, info os.FileInfo) (fs.Obj
if os.IsNotExist(err) {
return nil, fs.ErrorObjectNotFound
}
if os.IsPermission(err) {
return nil, fs.ErrorPermissionDenied
}
return nil, err
}
}