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
do
pushd $service &&
echo "Installing Service $service" &&
echo ' installing Node' &&
nvm install &&
nvm use &&
echo ' installing Dependencies' &&
npm install
popd
done