Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
plist files inside bundles are ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx committed Nov 12, 2014
1 parent afab342 commit 8697542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deliver/ipa_uploader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def build_document
def fetch_info_plist_file
Zip::File.open(@ipa_file.path) do |zipfile|
zipfile.each do |file|
if file.name.include?'.plist'
if file.name.include?'.plist' and not file.name.include?".bundle"
# We can not be completely sure, that's the correct plist file, so we have to try
begin
# The XML file has to be properly unpacked first
Expand Down

0 comments on commit 8697542

Please sign in to comment.