Suppress verbose output from type command.

This commit is contained in:
Shane Kilkelly 2017-09-04 15:57:13 +01:00
parent bdbf2b3e71
commit 54874c3389

View file

@ -7,8 +7,8 @@ grep 'name:' config/services.js | \
pushd $service
echo "Installing Service $service"
echo ' installing Node'
type nvm && nvm install
type nvm && nvm use
type -t nvm && nvm install
type -t nvm && nvm use
echo ' installing Dependencies'
npm install
popd