From e4f0ea83e72e4f094f517e6fef7752a3e3dbe8ea Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Wed, 2 Oct 2024 14:28:21 +0100 Subject: [PATCH] Remove ignore pattern from Sentry config (#20778) GitOrigin-RevId: 1fa77e49f8c5124f30774536b044d96d06ca8c18 --- services/web/bin/sentry_upload | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/bin/sentry_upload b/services/web/bin/sentry_upload index a1badc66f3..3d3c7c76df 100755 --- a/services/web/bin/sentry_upload +++ b/services/web/bin/sentry_upload @@ -10,7 +10,7 @@ if [[ "$BRANCH_NAME" == "master" || "$BRANCH_NAME" == "main" ]]; then SENTRY_RELEASE=${COMMIT_SHA} sentry-cli releases new "$SENTRY_RELEASE" sentry-cli releases set-commits --auto "$SENTRY_RELEASE" - sentry-cli releases files "$SENTRY_RELEASE" upload-sourcemaps --ignore '*/dictionaries/*' --no-rewrite --url-prefix ~ . + sentry-cli releases files "$SENTRY_RELEASE" upload-sourcemaps --no-rewrite --url-prefix ~ . sentry-cli releases finalize "$SENTRY_RELEASE" rm -rf sentry_upload