removing xterm from linux spawn
Summary:Simply removing the xterm spawn from android packager, since you can archive exactly the same results using the standard shell 😄 Closes https://github.com/facebook/react-native/pull/7077 Differential Revision: D3212548 Pulled By: mkonicek fb-gh-sync-id: 8cc03d2708614f64e1394ca738e5de0ba631deb9 fbshipit-source-id: 8cc03d2708614f64e1394ca738e5de0ba631deb9
This commit is contained in:
parent
db34d72d3c
commit
44d36f7c5f
|
@ -173,7 +173,7 @@ function startServerInNewWindow() {
|
|||
if (yargV.open){
|
||||
return child_process.spawn(yargV.open,['-e', 'sh', launchPackagerScript], {detached: true});
|
||||
}
|
||||
return child_process.spawn('xterm',['-e', 'sh', launchPackagerScript],{detached: true});
|
||||
return child_process.spawn('sh', [launchPackagerScript],{detached: true});
|
||||
|
||||
} else if (/^win/.test(process.platform)) {
|
||||
console.log(chalk.yellow('Starting the packager in a new window ' +
|
||||
|
|
Loading…
Reference in New Issue