We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385c9e5 commit feeb7dbCopy full SHA for feeb7db
tools/xcarchivetool/make_xcarchive.py
@@ -130,7 +130,7 @@ def _main(
130
131
# If is an .ipa, extract and copy .app to destination
132
# Else Copy the archive contents to the destination.
133
- if bundle_path.suffix == ".ipa":
+ if bundle_path.suffix in [".ipa", ".zip"]:
134
_extract_app_from_ipa(bundle_path, bundle_dest_path)
135
else:
136
shutil.copytree(bundle_path, bundle_dest_path,
0 commit comments