aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2018-07-11 19:03:57 +0200
committerMarvin Borner2018-07-11 19:03:57 +0200
commit33ba1c05405820e8d2c90c1a9b73a7819260537f (patch)
treefa3c35d51fd1cb73249eb709478a68dd68fc0fbb
parentb8c219ed7a482740927e301502b9522c13eddeb1 (diff)
Hide output of assets compiler
-rw-r--r--StartServer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/StartServer.sh b/StartServer.sh
index cc9f3e1..77a36be 100644
--- a/StartServer.sh
+++ b/StartServer.sh
@@ -7,7 +7,7 @@ php artisan queue:work &
PIDS[2]=$!
php artisan serve &
PIDS[3]=$!
-npm run watch &
+npm run watch > /dev/null 2>&1
PIDS[4]=$!
trap "kill ${PIDS[*]}" SIGINT