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 @@ -182,17 +182,17 @@ export const program = new Command("react-native-node-api-cmake")
182182 ) ;
183183 if ( appleTriplets . length > 0 ) {
184184 const libraryPaths = appleTriplets . flatMap ( ( { tripletOutputPath } ) => {
185- const configSpecifcPath = path . join (
185+ const configSpecificPath = path . join (
186186 tripletOutputPath ,
187187 globalContext . configuration
188188 ) ;
189189 assert (
190- existsSync ( configSpecifcPath ) ,
191- `Expected a directory at ${ configSpecifcPath } `
190+ existsSync ( configSpecificPath ) ,
191+ `Expected a directory at ${ configSpecificPath } `
192192 ) ;
193193 // Expect binary file(s), either .node or .dylib
194- return readdirSync ( configSpecifcPath ) . map ( ( file ) => {
195- const filePath = path . join ( configSpecifcPath , file ) ;
194+ return readdirSync ( configSpecificPath ) . map ( ( file ) => {
195+ const filePath = path . join ( configSpecificPath , file ) ;
196196 if ( filePath . endsWith ( ".dylib" ) ) {
197197 return filePath ;
198198 } else if ( file . endsWith ( ".node" ) ) {
You can’t perform that action at this time.
0 commit comments