Created
April 2, 2016 02:29
-
-
Save kaosdg/c09ebd098bd50fa9bd7703fef8a76040 to your computer and use it in GitHub Desktop.
Uploading dSYMS to Fabric / Crashlytics.
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/sh | |
KEYWORDS="error:" | |
if [ "${PLATFORM_NAME}" != "iphonesimulator" ]; then | |
echo "Uploading dSYMs..." | |
find "${DWARF_DSYM_FOLDER_PATH}" -name "*.dSYM" | xargs -I \{\} ${PODS_ROOT}/Fabric/upload-symbols -a 04afe0f7fa698adbba11ccd0886cb207021e332b -p ios \{\} | |
else | |
echo "Not uploading dSYMs for simulator builds" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment