Fix packager script breakage when running `npm start`

This commit is contained in:
Vinnie Garcia 2015-04-08 01:21:30 -07:00
parent d91d28a2a6
commit 2740e08ef7
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ function run() {
switch (args[0]) { switch (args[0]) {
case 'start': case 'start':
spawn('sh', [ spawn('sh', [
path.resolve(__dirname, 'packager', 'packager.sh'), path.resolve(__dirname, '../packager', 'packager.sh'),
'--projectRoots', '--projectRoots',
process.cwd(), process.cwd(),
], {stdio: 'inherit'}); ], {stdio: 'inherit'});