Skip to content

Commit ebb26cf

Browse files
tido64facebook-github-bot
authored andcommitted
fix(ios): pod install --project-directory=ios fails (#32489)
Summary: Running `pod install` from outside the `ios` folder fails because the path to `React-Codegen` is wrong: ``` % pod install --project-directory=ios [Codegen] Generating ios/build/generated/ios/React-Codegen.podspec.json Auto-linking React Native module for target `ReactTestApp`: ReactTestApp-DevSupport Analyzing dependencies Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec` Fetching podspec for `RCT-Folly` from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec` [!] No podspec found for `React-Codegen` in `ios/build/generated/ios` ``` ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [iOS] [Fixed] - `pod install --project-directory=ios` fails due to wrong path to `React-Codegen` Pull Request resolved: #32489 Test Plan: 1. Verify that `pod install` still works in `/packages/rn-tester` 2. Verify that `pod install --project-directory=ios` also works: ``` git clone https://github.com/microsoft/react-native-test-app.git cd react-native-test-app npm run set-react-version main yarn cd example pod install --project-directory=ios ``` Reviewed By: lunaleaps Differential Revision: D32158140 Pulled By: sota000 fbshipit-source-id: 98f12b0073cd911cb9de06201222d866ef7649a4
1 parent f0947a7 commit ebb26cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/react_native_pods.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def generate_temp_pod_spec_for_codegen!(fabric_enabled)
274274

275275
return {
276276
"spec" => spec,
277-
"path" => output_dir,
277+
"path" => $CODEGEN_OUTPUT_DIR, # Path needs to be relative to `Podfile`
278278
}
279279
end
280280

0 commit comments

Comments
 (0)