Skip to content

Commit a5f2a39

Browse files
committed
codereview: fixed wrong casing on filename
1 parent a3a0ac1 commit a5f2a39

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/react-native/scripts/ios-prebuild/xcframework.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const frameworkLog = createLogger('XCFramework');
3131
*/
3232
const REACT_CORE_UMBRELLA_HEADER_PATH /*: string*/ = path.join(
3333
__dirname,
34-
'Templates',
34+
'templates',
3535
'React-umbrella.h',
3636
);
3737

@@ -41,13 +41,13 @@ const REACT_CORE_UMBRELLA_HEADER_PATH /*: string*/ = path.join(
4141
*/
4242
const RCT_APP_DELEGATE_UMBRELLA_HEADER_PATH /*: string*/ = path.join(
4343
__dirname,
44-
'Templates',
44+
'templates',
4545
'React_RCTAppDelegate-umbrella.h',
4646
);
4747

4848
const RN_MODULEMAP_PATH /*: string*/ = path.join(
4949
__dirname,
50-
'Templates',
50+
'templates',
5151
'module.modulemap',
5252
);
5353

0 commit comments

Comments
 (0)