Replace uses of os.IsExist and os.IsNotExist with errors.Is.

The former don't properly unwrap errors.
This commit is contained in:
Juliusz Chroboczek
2024-04-14 13:33:52 +02:00
parent 68887f13d5
commit 3409f5a27f
10 changed files with 21 additions and 19 deletions
+1 -1
View File
@@ -264,7 +264,7 @@ func openDiskFile(directory, username, extension string) (*os.File, error) {
)
if err == nil {
return f, nil
} else if !os.IsExist(err) {
} else if !errors.Is(err, os.ErrExist) {
return nil, err
}
}