Created
February 21, 2020 09:56
-
-
Save mrugeshtank/6ce0c55f2d81264142d94c5521bb0ea0 to your computer and use it in GitHub Desktop.
This script will remove settings bundle from iOS app when configuration is Release
This file contains hidden or 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
BUILD_APP_DIR=${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app | |
if [ "$CONFIGURATION" == "Release" ]; then | |
rm -Rf $BUILD_APP_DIR/Settings.bundle | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment