mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-08 00:23:03 +00:00
[REACT NATIVE] Bugfix -> casing Podfile (#18861)
### 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
This commit is contained in:
parent
3ff4a4c393
commit
63b47ceaf8
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue