File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/platform-apple-helpers/src/lib/utils Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -132,12 +132,12 @@ async function runPodInstall(options: {
132132 env : {
133133 RCT_NEW_ARCH_ENABLED : options . newArch ? '1' : '0' ,
134134 RCT_IGNORE_PODS_DEPRECATION : '1' ,
135- RCT_USE_RN_DEP :
136- process . env [ 'RCT_USE_RN_DEP' ] || usePrebuiltReactNative ? '1' : '0' ,
137- RCT_USE_PREBUILT_RNCORE :
138- process . env [ 'RCT_USE_PREBUILT_RNCORE' ] || usePrebuiltReactNative
139- ? '1'
140- : '0' ,
135+ RCT_USE_RN_DEP : process . env [ 'RCT_USE_RN_DEP' ] != undefined
136+ ? String ( process . env [ 'RCT_USE_RN_DEP' ] )
137+ : usePrebuiltReactNative ? '1' : '0' ,
138+ RCT_USE_PREBUILT_RNCORE : process . env [ 'RCT_USE_PREBUILT_RNCORE' ] != undefined
139+ ? String ( process . env [ 'RCT_USE_PREBUILT_RNCORE' ] )
140+ : usePrebuiltReactNative ? '1' : '0' ,
141141 ...( options . brownfield && { USE_FRAMEWORKS : 'static' } ) ,
142142 ...( process . env [ 'USE_THIRD_PARTY_JSC' ] && {
143143 USE_THIRD_PARTY_JSC : process . env [ 'USE_THIRD_PARTY_JSC' ] ,
You can’t perform that action at this time.
0 commit comments