From c7caf3a67c6264539061c3cea9750941c1b673d0 Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Thu, 9 Jul 2020 05:23:46 +0100 Subject: [PATCH] Remove process args --- app/Console/Commands/Install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index 11f533e..60c5017 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -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.');