add logging to install-services script

Esse commit está contido em:
Hayden Faulds
2017-07-31 13:36:37 +01:00
commit d099c1e1f1
+3
Ver Arquivo
@@ -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