File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/react-native-builder-bob/src/utils Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- import { type SpawnOptions } from 'node:child_process ' ;
2- import { spawn } from './spawn ' ;
1+ import assert from 'node:assert ' ;
2+ import type { SpawnOptions } from 'node:child_process ' ;
33import path from 'node:path' ;
44import fs from 'fs-extra' ;
5- import assert from 'node:assert ' ;
5+ import { spawn } from './spawn ' ;
66
77// This is a special case for calling bob from the XCode scripts
88// XCode scripts don't have the node binary properly set
@@ -27,7 +27,7 @@ export async function runRNCCli(
2727 rncCliBinaryName
2828 ) ;
2929
30- return await spawn ( NODE_BINARY , [ RNC_CLI_BINARY_PATH , ...args ] , options ) ;
30+ return await spawn ( RNC_CLI_BINARY_PATH , [ ...args ] , options ) ;
3131}
3232
3333async function getCliBinaryName ( ) : Promise < string > {
You can’t perform that action at this time.
0 commit comments