mirror of
https://github.com/restic/restic.git
synced 2025-08-21 12:17:32 +00:00
Merge pull request #3746 from greatroar/cache-lstat
cache: Don't Lstat before creating CACHEDIR.TAG
This commit is contained in:
5
internal/cache/cache.go
vendored
5
internal/cache/cache.go
vendored
@@ -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) {
|
||||
|
Reference in New Issue
Block a user