Files
mattermost-mobile/ios/uploadDebugSymbols.sh
2023-04-19 14:58:59 -04:00

12 lines
313 B
Bash
Executable File

#!/bin/sh
if [[ "${SENTRY_ENABLED}" = "true" ]]; then
echo "Uploading debugging symbols to Sentry"
export SENTRY_PROPERTIES=sentry.properties
../node_modules/@sentry/cli/bin/sentry-cli upload-dif "$DWARF_DSYM_FOLDER_PATH"
else
echo "Not uploading debugging symbols to Sentry because Sentry is disabled"
fi