File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/react-native-node-api-cmake/src Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -181,17 +181,17 @@ export const program = new Command("react-native-node-api-cmake")
181
181
) ;
182
182
if ( appleTriplets . length > 0 ) {
183
183
const libraryPaths = appleTriplets . flatMap ( ( { tripletOutputPath } ) => {
184
- const configSpecifcPath = path . join (
184
+ const configSpecificPath = path . join (
185
185
tripletOutputPath ,
186
186
globalContext . configuration
187
187
) ;
188
188
assert (
189
- existsSync ( configSpecifcPath ) ,
190
- `Expected a directory at ${ configSpecifcPath } `
189
+ existsSync ( configSpecificPath ) ,
190
+ `Expected a directory at ${ configSpecificPath } `
191
191
) ;
192
192
// Expect binary file(s), either .node or .dylib
193
- return readdirSync ( configSpecifcPath ) . map ( ( file ) => {
194
- const filePath = path . join ( configSpecifcPath , file ) ;
193
+ return readdirSync ( configSpecificPath ) . map ( ( file ) => {
194
+ const filePath = path . join ( configSpecificPath , file ) ;
195
195
if ( filePath . endsWith ( ".dylib" ) ) {
196
196
return filePath ;
197
197
} else if ( file . endsWith ( ".node" ) ) {
You can’t perform that action at this time.
0 commit comments