Skip to content

Commit

Permalink
chore(ios): missing lint fixes (#7105)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Nov 29, 2023
1 parent 6bc338a commit 68943fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Capacitor/Capacitor/CAPInstanceDescriptor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ internal extension InstanceDescriptor {
// sanity check that the app directory is valid
var isDirectory: ObjCBool = ObjCBool(false)
if warnings.contains(.missingAppDir) == false,
(FileManager.default.fileExists(atPath: appLocation.path, isDirectory: &isDirectory) == false || isDirectory.boolValue == false) {
FileManager.default.fileExists(atPath: appLocation.path, isDirectory: &isDirectory) == false || isDirectory.boolValue == false {
warnings.update(with: .missingAppDir)
}

Expand Down

0 comments on commit 68943fe

Please sign in to comment.