Skip to content

Commit

Permalink
IOSC-12423 comment fatalError to publish code to co
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Kholyavkin committed Oct 10, 2024
1 parent a22d0e2 commit 9459faf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sources/XcodeProj/Objects/Project/PBXProjEncoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,9 @@ final class PBXProjEncoder {
})
} catch {
print("Unable to sort as Xcode 16 do: \(error)")
fatalError("\(error)")
// actually we could do even fatalError here
// but it could be too brave for common repository
// fatalError("\(error)")
}
}
}
Expand Down

0 comments on commit 9459faf

Please sign in to comment.