From edd8c6f98de6ed7a25d752f2a22cb34ba4b2f721 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 30 Nov 2015 23:19:48 -0500 Subject: [PATCH] Only install production dependencies with init.sh --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index a6b03b1..9057950 100755 --- a/init.sh +++ b/init.sh @@ -60,7 +60,7 @@ msg "Running: ${c_m}php artisan migrate" php artisan migrate || error "${c_m}php artisan migrate$c_w exited with an error status" msg "Running: ${c_m}npm install" -npm install || error "${c_m}npm install$c_w exited with an error status" +npm install --production || error "${c_m}npm install$c_w exited with an error status" msg "Running: ${c_m}bower install" bower install || error "${c_m}bower install$c_w exited with an error status"