From 2ad9b34a2e2682459f06fc8955be5609c73dbc76 Mon Sep 17 00:00:00 2001 From: Alexander Beshchuk Date: Thu, 12 Feb 2015 19:37:22 +0200 Subject: [PATCH] Fix for issue #649. 'git branch' unknown '--quiet' option was removed. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index cbf6938..a48e52a 100755 --- a/install.sh +++ b/install.sh @@ -69,7 +69,7 @@ install_nvm_from_git() { mkdir -p "$NVM_DIR" command git clone "$(nvm_source git)" "$NVM_DIR" fi - cd "$NVM_DIR" && command git checkout --quiet $(nvm_latest_version) && command git branch --quiet -D master >/dev/null 2>&1 + cd "$NVM_DIR" && command git checkout --quiet $(nvm_latest_version) && command git branch -D master >/dev/null 2>&1 return }