forked from miguel456/rbrecruiter
Separate process args
This commit is contained in:
parent
016ce1fbf6
commit
7c7d4a306c
|
@ -56,9 +56,8 @@ class Install extends Command
|
||||||
|
|
||||||
|
|
||||||
// Command stack
|
// Command stack
|
||||||
$composer = new Process('composer install', $basePath);
|
$npm = new Process(['npm', 'install'], $basePath);
|
||||||
$npm = new Process('npm install', $basePath);
|
$npmBuild = new Process(['npm', 'run dev'], $basePath);
|
||||||
$npmBuild = new Process('npm run dev', $basePath);
|
|
||||||
|
|
||||||
|
|
||||||
$this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');
|
$this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');
|
||||||
|
|
Loading…
Reference in New Issue