diff options
author | Marvin Borner | 2018-07-11 19:03:57 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-11 19:03:57 +0200 |
commit | 33ba1c05405820e8d2c90c1a9b73a7819260537f (patch) | |
tree | fa3c35d51fd1cb73249eb709478a68dd68fc0fbb | |
parent | b8c219ed7a482740927e301502b9522c13eddeb1 (diff) |
Hide output of assets compiler
-rw-r--r-- | StartServer.sh | 2 |
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 |