add logging to install-services script

This commit is contained in:
Hayden Faulds 2017-07-31 13:36:37 +01:00
parent 6e91742a8a
commit d099c1e1f1

View file

@ -5,8 +5,11 @@ grep 'name:' config/services.js | \
while read service while read service
do do
pushd $service && pushd $service &&
echo "Installing Service $service" &&
echo ' installing Node' &&
nvm install && nvm install &&
nvm use && nvm use &&
echo ' installing Dependencies' &&
npm install npm install
popd popd
done done