File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2626- Fix ` WITH_ENVIRONMENT ` overwrite in ` sentry-xcode-debug-files.sh ` ([ #3525 ] ( https://github.com/getsentry/sentry-react-native/pull/3525 ) )
2727- Sentry CLI 2.25.1 fixes background debug files uploads during Xcode builds ([ #3486 ] ( https://github.com/getsentry/sentry-react-native/pull/3486 ) )
2828- Performance Tracing should be disabled by default ([ #3533 ] ( https://github.com/getsentry/sentry-react-native/pull/3533 ) )
29+ - Use ` $NODE_BINARY ` to execute Sentry CLI in Xcode scripts ([ #3493 ] ( https://github.com/getsentry/sentry-react-native/pull/3493 ) )
2930
3031### Dependencies
3132
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ EXTRA_ARGS="$SENTRY_CLI_EXTRA_ARGS $SENTRY_CLI_DEBUG_FILES_UPLOAD_EXTRA_ARGS $IN
2626UPLOAD_DEBUG_FILES=" \" $SENTRY_CLI_EXECUTABLE \" debug-files upload $EXTRA_ARGS \" $DWARF_DSYM_FOLDER_PATH \" "
2727
2828if [ " $SENTRY_DISABLE_AUTO_UPLOAD " != true ]; then
29- /bin/sh -c " $UPLOAD_DEBUG_FILES "
29+ /bin/sh -c " \" $LOCAL_NODE_BINARY \" $UPLOAD_DEBUG_FILES "
3030else
3131 echo " SENTRY_DISABLE_AUTO_UPLOAD=true, skipping debug files upload"
3232fi
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ ARGS="$NO_AUTO_RELEASE $SENTRY_CLI_EXTRA_ARGS $SENTRY_CLI_RN_XCODE_EXTRA_ARGS"
2323REACT_NATIVE_XCODE_WITH_SENTRY=" \" $SENTRY_CLI_EXECUTABLE \" react-native xcode $ARGS \" $REACT_NATIVE_XCODE \" "
2424
2525if [ " $SENTRY_DISABLE_AUTO_UPLOAD " != true ]; then
26- /bin/sh -c " $REACT_NATIVE_XCODE_WITH_SENTRY "
26+ /bin/sh -c " \" $LOCAL_NODE_BINARY \" $REACT_NATIVE_XCODE_WITH_SENTRY "
2727else
2828 echo " SENTRY_DISABLE_AUTO_UPLOAD=true, skipping sourcemaps upload"
2929 /bin/sh -c " $REACT_NATIVE_XCODE "
You can’t perform that action at this time.
0 commit comments