Skip to content

Commit

Permalink
Ignore binary frameworks in Cartfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Johennes committed Apr 25, 2018
1 parent 1eab857 commit 5475da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cartfile2json.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def parseCartfileFrameworks(cartfile):
macro_buffer.update({keyValueSearch.group(1): keyValueSearch.group(2)})
else:
print "Failed to parse Attributions macro '{}'".format(line)
elif line.startswith('#'):
elif line.startswith('#') or line.startswith('binary'):
continue
else:
components = line.split()
Expand Down

0 comments on commit 5475da9

Please sign in to comment.