From 365866c641267522a5f6a999dd440cabe3d5e8bd Mon Sep 17 00:00:00 2001 From: Patrick Cheng Date: Fri, 30 Oct 2015 17:01:49 -0700 Subject: [PATCH] added part of the Readme. added URL to the project for additional info/updates --- package_ipa.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/package_ipa.sh b/package_ipa.sh index 67b0cf3..0b9966b 100755 --- a/package_ipa.sh +++ b/package_ipa.sh @@ -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"