Skip to content

Commit

Permalink
update sort method docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
truebit committed Aug 2, 2014
1 parent 6b2dcdf commit 02d25b3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions xUnique.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,11 @@ def replace_uuids_with_file(self):

def sort_pbxproj(self):
"""
my modified version which supports to sort PBXFileReference and PBXBuildFile sections:
https://github.com/truebit/webkit/commit/7afa105d20fccdec68d8bd778b649409f17cbdc0#diff-d65acb20b3ed0e21ae223a4e0cadf7b1
https://github.com/truebit/webkit/commits/master/Tools/Scripts/sort-Xcode-project-file
my modified version which supports:
1. sort PBXFileReference and PBXBuildFile sections
2. avoid creating new file if no changes made
"""
sort_script_path = path.join(path.dirname(path.abspath(__file__)), 'sort-Xcode-project-file-mod2.pl')
if not path.exists(sort_script_path):
Expand Down

0 comments on commit 02d25b3

Please sign in to comment.