We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cb6669 commit ad6340fCopy full SHA for ad6340f
Scripts/upload-sentry-sources.sh
@@ -7,16 +7,11 @@ then
7
echo "Skipping Sentry sources upload"
8
elif [[ -n $SENTRY_AUTH_TOKEN ]]
9
then
10
- ERROR=$(sentry-cli debug-files upload \
11
- --org $SENTRY_ORG \
12
- --project $SENTRY_PROJECT \
13
- --auth-token $SENTRY_AUTH_TOKEN \
14
- --include-sources "$DWARF_DSYM_FOLDER_PATH" \
15
- --force-foreground 2>&1 >/dev/null)
+ sentry-cli debug-files upload --include-sources "$DWARF_DSYM_FOLDER_PATH"
16
17
if [[ $? -ne 0 ]]
18
19
- echo "error: sentry-cli - $ERROR"
+ echo "error: failed to upload debug files to Sentry"
20
exit 1
21
fi
22
0 commit comments