Skip to content

Commit 6d268d2

Browse files
committed
fix error type check
1 parent 4ab4a89 commit 6d268d2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

driver.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package fig
22

33
import (
4-
"errors"
54
"fmt"
65
"os"
76

@@ -57,7 +56,7 @@ func NewOptionalFileEnvironmentDriver(filenames ...string) (EnvironmentDriver, e
5756
for _, f := range filenames {
5857
if _, err := os.Stat(f); err == nil {
5958
presentFiles = append(presentFiles, f)
60-
} else if !errors.Is(err, os.ErrNotExist) {
59+
} else if !os.IsNotExist(err) {
6160
return EnvironmentDriver{}, fmt.Errorf("failed checking for file %s: %w", f, err)
6261
}
6362
}

0 commit comments

Comments
 (0)