From 54874c3389bd63dc363c26b2536c0cca7584857b Mon Sep 17 00:00:00 2001 From: Shane Kilkelly Date: Mon, 4 Sep 2017 15:57:13 +0100 Subject: [PATCH] Suppress verbose output from `type` command. --- bin/install-services | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install-services b/bin/install-services index 38cc89c60c..10ddfe0e43 100644 --- a/bin/install-services +++ b/bin/install-services @@ -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