From 63b47ceaf892da6d960df73a3ab0007be9a1e8ef Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 19 Dec 2023 01:20:46 +0100 Subject: [PATCH] [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 --- js/react_native/app.plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/react_native/app.plugin.js b/js/react_native/app.plugin.js index bce476e9e9..ed4cfe4856 100644 --- a/js/react_native/app.plugin.js +++ b/js/react_native/app.plugin.js @@ -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