Skip to content

Commit

Permalink
Fixed sorting of ProjectRefs when generating project files for xcode. (
Browse files Browse the repository at this point in the history
  • Loading branch information
23rd authored Jun 1, 2022
1 parent 8eebd86 commit 1f421c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/gyp/xcodeproj_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2990,7 +2990,7 @@ def AddOrGetProjectReference(self, other_pbxproject):
# Xcode seems to sort this list case-insensitively
self._properties["projectReferences"] = sorted(
self._properties["projectReferences"],
key=lambda x: x["ProjectRef"].Name().lower
key=lambda x: x["ProjectRef"].Name().lower()
)
else:
# The link already exists. Pull out the relevnt data.
Expand Down

0 comments on commit 1f421c9

Please sign in to comment.