Skip to content

Commit 9459faf

Browse files
author
Maxim Kholyavkin
committed
IOSC-12423 comment fatalError to publish code to co
1 parent a22d0e2 commit 9459faf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/XcodeProj/Objects/Project/PBXProjEncoder.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,9 @@ final class PBXProjEncoder {
501501
})
502502
} catch {
503503
print("Unable to sort as Xcode 16 do: \(error)")
504-
fatalError("\(error)")
504+
// actually we could do even fatalError here
505+
// but it could be too brave for common repository
506+
// fatalError("\(error)")
505507
}
506508
}
507509
}

0 commit comments

Comments
 (0)