Skip to content

Commit 7f1bf7a

Browse files
committed
Upload debug Symbols extra intrusction
1 parent 62bf803 commit 7f1bf7a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

platform-includes/debug-symbols-apple/_default.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ Another option is to use warnings, and then set `GCC_TREAT_WARNINGS_AS_ERRORS` t
9595
<OrgAuthTokenNote />
9696

9797
```bash {tabTitle:Warn on failures - nonblocking}
98+
#Uncomment the following lines if you installed sentry-cli via Homebrew in a Apple Silicon Mac
99+
#if [[ "$(uname -m)" == arm64 ]]; then
100+
# export PATH="/opt/homebrew/bin:$PATH"
101+
#fi
102+
98103
if which sentry-cli >/dev/null; then
99104
export SENTRY_ORG=___ORG_SLUG___
100105
export SENTRY_PROJECT=___PROJECT_SLUG___
@@ -109,6 +114,11 @@ fi
109114
```
110115

111116
```bash {tabTitle:Error on failures - blocking}
117+
#Uncomment the following lines if you installed sentry-cli via Homebrew in a Apple Silicon Mac
118+
#if [[ "$(uname -m)" == arm64 ]]; then
119+
# export PATH="/opt/homebrew/bin:$PATH"
120+
#fi
121+
112122
if which sentry-cli >/dev/null; then
113123
export SENTRY_ORG=___ORG_SLUG___
114124
export SENTRY_PROJECT=___PROJECT_SLUG___

platform-includes/source-context/apple.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ You can upload your sources to Sentry after every build through Xcode. To do thi
4848
<OrgAuthTokenNote />
4949

5050
```bash {tabTitle:Warn on failures - nonblocking}
51+
#Uncomment the following lines if you installed sentry-cli via Homebrew in a Apple Silicon Mac
52+
#if [[ "$(uname -m)" == arm64 ]]; then
53+
# export PATH="/opt/homebrew/bin:$PATH"
54+
#fi
55+
5156
if which sentry-cli >/dev/null; then
5257
export SENTRY_ORG=___ORG_SLUG___
5358
export SENTRY_PROJECT=___PROJECT_SLUG___
@@ -62,6 +67,11 @@ fi
6267
```
6368

6469
```bash {tabTitle:Error on failures - blocking}
70+
#Uncomment the following lines if you installed sentry-cli via Homebrew in a Apple Silicon Mac
71+
#if [[ "$(uname -m)" == arm64 ]]; then
72+
# export PATH="/opt/homebrew/bin:$PATH"
73+
#fi
74+
6575
if which sentry-cli >/dev/null; then
6676
export SENTRY_ORG=___ORG_SLUG___
6777
export SENTRY_PROJECT=___PROJECT_SLUG___

0 commit comments

Comments
 (0)