Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1383864 enable sentry #2969

Merged
merged 1 commit into from Jul 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 3 additions & 8 deletions buddybuild_prebuild.sh
Expand Up @@ -34,16 +34,11 @@ echo "Setting Leanplum environment to PRODUCTION for $BUDDYBUILD_SCHEME"
/usr/libexec/PlistBuddy -c "Set LeanplumKey $LEANPLUM_KEY_PRODUCTION" "Client/Info.plist"

#
# Enable Sentry on all builds except release
# Enable Sentry on all builds
#

if [ "$BUDDYBUILD_SCHEME" != "Firefox" ]; then
echo "Setting SentryDSN to $SENTRY_DSN"
/usr/libexec/PlistBuddy -c "Set SentryDSN $SENTRY_DSN" "Client/Info.plist"
else
echo "Deleting SentryDSN"
/usr/libexec/PlistBuddy -c "Delete SentryDSN" "Client/Info.plist"
fi
echo "Setting SentryDSN to $SENTRY_DSN"
/usr/libexec/PlistBuddy -c "Set SentryDSN $SENTRY_DSN" "Client/Info.plist"

#
# Set the build number to match the Buddybuild number
Expand Down