Remove process args

This commit is contained in:
Miguel Nogueira 2020-07-09 05:23:46 +01:00
parent 7c7d4a306c
commit c7caf3a67c
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ class Install extends Command
// Command stack
$npm = new Process(['npm', 'install'], $basePath);
$npmBuild = new Process(['npm', 'run dev'], $basePath);
$npm = new Process(['npm install', ''], $basePath);
$npmBuild = new Process(['npm run dev', ''], $basePath);
$this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');