Created
April 26, 2016 08:32
-
-
Save kimar/48f674b6ec2b9230550ee11e4a60b00d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BASE_PATH="${SRCROOT}/swiftybeaver" | |
PLIST_NAME="SwiftyBeaver.plist" | |
PLIST="${BASE_PATH}/${PLIST_NAME}" | |
SCRIPT="${BASE_PATH}/vars.sh" | |
if [ ! -d $BASE_PATH ]; then | |
mkdir -p $BASE_PATH | |
fi | |
if [ -f $SCRIPT ]; then | |
if [ -f $PLIST ]; then | |
rm $PLIST | |
fi | |
echo "Sourced SwiftyBeaver…" | |
source $SCRIPT | |
if [ -n $SB_APP_ID -a -n $SB_APP_SECRET -a -n $SB_ENCRYPTION_KEY ]; then | |
echo "SwiftyBeaver Token setup correctly. Creating Plist…" | |
/usr/libexec/PlistBuddy -c "Add :SBAppId string ${SB_APP_ID}" $PLIST | |
/usr/libexec/PlistBuddy -c "Add :SBAppSecret string ${SB_APP_SECRET}" $PLIST | |
/usr/libexec/PlistBuddy -c "Add :SBEncryptionKey string ${SB_ENCRYPTION_KEY}" $PLIST | |
echo "Copying SwiftyBeaver.plist into application bundle…" | |
cp $PLIST "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/${PLIST_NAME}" | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment