Skip to content

Commit 6444fb9

Browse files
committed
Fix linux
1 parent a83c956 commit 6444fb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Configuration/Utilities/FoundationExtensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ extension Error {
4040
/// Inspects whether the error represents a file not found.
4141
internal var isFileNotFoundError: Bool {
4242
if let posixError = self as? POSIXError {
43-
return posixError.code == POSIXError.Code.ENOENT
43+
return posixError.code == POSIXError.ENOENT
4444
}
4545
if let cocoaError = self as? CocoaError, cocoaError.isFileError {
4646
return [

0 commit comments

Comments
 (0)