diff --git a/CHANGELOG.md b/CHANGELOG.md index b8cfa310e3..a91036c9f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ ### Fixes +- Remove `error:` prefix from `collect-modules.sh` to avoid failing iOS builds ([#4570](https://github.com/getsentry/sentry-react-native/pull/4570)) - Sentry Module Collection Script Fails with Spaces in Node Path on iOS ([#4559](https://github.com/getsentry/sentry-react-native/pull/4559)) - Various crashes and issues of Session Replay on Android. See the Android SDK version bump for more details. ([#4529](https://github.com/getsentry/sentry-react-native/pull/4529)) diff --git a/packages/core/scripts/collect-modules.sh b/packages/core/scripts/collect-modules.sh index 975a4bb137..ec67c7d93f 100755 --- a/packages/core/scripts/collect-modules.sh +++ b/packages/core/scripts/collect-modules.sh @@ -45,7 +45,7 @@ else fi if ! command -v "$nodePath" >/dev/null 2>&1; then - echo >&2 "error: $nodePath not found! Modules won't be collected." \ + echo "[sentry/collect-modules.sh] $nodePath not found! Modules won't be collected." \ "Please export NODE_BINARY in 'Build Phase' - 'Bundle React Native code and images'" \ "to an absolute path of your node binary. Check your node path by 'which node'." exit 0 # Don't fail the build but inform about the problem