Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions package_ipa.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
#!/bin/bash
#
# ipa-packager
# ============
# Homepage: https://github.com/bq/ipa-packager
#
# This script packages a signed application into an IPA that contains the SwiftSupport folder with libswiftCore*.dylib. This is needed to deploy an app made with Swift into the AppStore
#
# Usage
# -----
# Run the script
# sh package_ipa.sh /path/to/signed/app /output/ipa/path
#
# License
# -------
# This script is distributed in terms of LGPL license. See http://www.gnu.org/licenses/lgpl.html for more details.
#


APP="$1"
IPA="$2"
TEMP_IPA_BUILT="/tmp/ipabuild"
Expand Down