File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11
11
### Changes
12
12
13
13
- Fallback to Current Activity Holder when React Context Activity is not present ([ #4779 ] ( https://github.com/getsentry/sentry-react-native/pull/4779 ) )
14
+ - Support ` REACT_NATIVE_PATH ` env in Xcode Debug Files upload scripts ([ #4789 ] ( https://github.com/getsentry/sentry-react-native/pull/4789 ) )
14
15
15
16
### Fixes
16
17
Original file line number Diff line number Diff line change 5
5
# print commands before executing them
6
6
set -x
7
7
8
- [ -z " $WITH_ENVIRONMENT " ] && WITH_ENVIRONMENT=" ../node_modules/react-native/scripts/xcode/with-environment.sh"
8
+ # REACT_NATIVE_PATH first used in RN 0.74.0 Template https://github.com/facebook/react-native/commit/289e78388a87408e215a25108cb02511a05f5c80
9
+ LOCAL_REACT_NATIVE_PATH=" ${REACT_NATIVE_PATH:- " ../node_modules/react-native" } "
10
+
11
+ [ -z " $WITH_ENVIRONMENT " ] && WITH_ENVIRONMENT=" ${LOCAL_REACT_NATIVE_PATH} /scripts/xcode/with-environment.sh"
9
12
10
13
if [ -f " $WITH_ENVIRONMENT " ]; then
11
14
# load envs if loader file exists (since rn 0.68)
You can’t perform that action at this time.
0 commit comments