Skip to content

Commit

Permalink
Skip Sentry upload during iOS Debug build (#1458)
Browse files Browse the repository at this point in the history
This step is already skipped during the Android debug build

Co-authored-by: Erik Marks <[email protected]>
  • Loading branch information
Gudahtt and rekmarks authored Mar 25, 2020
1 parent bc7815c commit ad0b7e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/MetaMask.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2429,7 +2429,7 @@
outputPaths = (
);
shellPath = /bin/sh;
shellScript = "if [ ! -e \"${SENTRY_PROPERTIES}\" ]; then\n export SENTRY_PROPERTIES=../sentry.properties\nfi\n../node_modules/@sentry/cli/bin/sentry-cli upload-dsym";
shellScript = "if [ ! -e \"${SENTRY_PROPERTIES}\" ]; then\n export SENTRY_PROPERTIES=../sentry.properties\nfi\nif [ \"${CONFIGURATION}\" != \"Debug\" ]; then\n ../node_modules/@sentry/cli/bin/sentry-cli upload-dsym\nfi";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit ad0b7e5

Please sign in to comment.