Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions platform-includes/debug-symbols-apple/_default.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ Another option is to use warnings, and then set `GCC_TREAT_WARNINGS_AS_ERRORS` t
<OrgAuthTokenNote />

```bash {tabTitle:Warn on failures - nonblocking}
if [[ "$(uname -m)" == arm64 ]]; then
export PATH="/opt/homebrew/bin:$PATH"
fi

if which sentry-cli >/dev/null; then
export SENTRY_ORG=___ORG_SLUG___
export SENTRY_PROJECT=___PROJECT_SLUG___
Expand All @@ -109,6 +113,10 @@ fi
```

```bash {tabTitle:Error on failures - blocking}
if [[ "$(uname -m)" == arm64 ]]; then
export PATH="/opt/homebrew/bin:$PATH"
fi

if which sentry-cli >/dev/null; then
export SENTRY_ORG=___ORG_SLUG___
export SENTRY_PROJECT=___PROJECT_SLUG___
Expand Down
8 changes: 8 additions & 0 deletions platform-includes/source-context/apple.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ You can upload your sources to Sentry after every build through Xcode. To do thi
<OrgAuthTokenNote />

```bash {tabTitle:Warn on failures - nonblocking}
if [[ "$(uname -m)" == arm64 ]]; then
export PATH="/opt/homebrew/bin:$PATH"
fi

if which sentry-cli >/dev/null; then
export SENTRY_ORG=___ORG_SLUG___
export SENTRY_PROJECT=___PROJECT_SLUG___
Expand All @@ -62,6 +66,10 @@ fi
```

```bash {tabTitle:Error on failures - blocking}
if [[ "$(uname -m)" == arm64 ]]; then
export PATH="/opt/homebrew/bin:$PATH"
fi

if which sentry-cli >/dev/null; then
export SENTRY_ORG=___ORG_SLUG___
export SENTRY_PROJECT=___PROJECT_SLUG___
Expand Down
Loading