Merge pull request #3746 from greatroar/cache-lstat

cache: Don't Lstat before creating CACHEDIR.TAG
This commit is contained in:
MichaelEischer 2022-05-10 20:31:15 +02:00 committed by GitHub
commit 47c56dea5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -59,11 +59,6 @@ func writeCachedirTag(dir string) error {
}
tagfile := filepath.Join(dir, "CACHEDIR.TAG")
_, err := fs.Lstat(tagfile)
if err != nil && !errors.Is(err, os.ErrNotExist) {
return errors.WithStack(err)
}
f, err := fs.OpenFile(tagfile, os.O_CREATE|os.O_EXCL|os.O_WRONLY, fileMode)
if err != nil {
if errors.Is(err, os.ErrExist) {