diff --git a/bin/install-services b/bin/install-services index 760f0a7edf..38cc89c60c 100644 --- a/bin/install-services +++ b/bin/install-services @@ -4,12 +4,12 @@ grep 'name:' config/services.js | \ sed 's/.*name: "\(.*\)",/\1/' | \ while read service do - pushd $service && - echo "Installing Service $service" && - echo ' installing Node' && - nvm install && - nvm use && - echo ' installing Dependencies' && + pushd $service + echo "Installing Service $service" + echo ' installing Node' + type nvm && nvm install + type nvm && nvm use + echo ' installing Dependencies' npm install popd done