Skip to content

Commit

Permalink
[REACT NATIVE] Bugfix -> casing Podfile (#18861)
Browse files Browse the repository at this point in the history
### Description
The casing of Podfile is incorrect in the plugin. This causes issues
when building iOS on case-sensitive systems such as Linux.

### Motivation and Context
because cannot build ios on case sensitive systems
  • Loading branch information
frankbaele authored Dec 19, 2023
1 parent 3ff4a4c commit 63b47ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/react_native/app.plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const withOrt = (config) => {
config = configPlugin.withDangerousMod(config, [
'ios',
(config) => {
const podFilePath = path.join(config.modRequest.platformProjectRoot, 'PodFile');
const podFilePath = path.join(config.modRequest.platformProjectRoot, 'Podfile');
const contents = fs.readFileSync(podFilePath, {encoding: 'utf-8'});
const updatedContents =
generateCode
Expand Down

0 comments on commit 63b47ce

Please sign in to comment.