From 07565b0adfb517eb40b48f8deaac1023ce303c68 Mon Sep 17 00:00:00 2001 From: Peter Haight Date: Tue, 30 Dec 2014 17:18:10 -0800 Subject: [PATCH] Install npm and bower modules in setup. For the test and demo setups to work with the new npm and bower stuff, npm install needs to get run. Civi buildkit calls setup.sh, so we'll put it here for now. --- bin/setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/setup.sh b/bin/setup.sh index 96049cb970..535cf60492 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -49,6 +49,9 @@ if [ -z $DBPASS ] ; then DBPASS=$REPLY fi +# Install npm and bower modules +npm install + # run code generator if it's there - which means it's # checkout, not packaged code if [ -d "$CALLEDPATH/../xml" ]; then -- 2.25.1