From 0795cfebbb73c0c66fdd1195873aebc866385b69 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Thu, 21 Jul 2016 20:05:02 +0100 Subject: [PATCH] Silence git fetch output when updating --- zsh-nvm.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh-nvm.plugin.zsh b/zsh-nvm.plugin.zsh index a09ad23..d558119 100644 --- a/zsh-nvm.plugin.zsh +++ b/zsh-nvm.plugin.zsh @@ -33,7 +33,7 @@ nvm_update() { echo "You're already up to date" else echo "Updating to $latest_version..." - $(cd "$NVM_DIR" && git fetch && git checkout "$latest_version") + $(cd "$NVM_DIR" && git fetch --quiet && git checkout "$latest_version") source "$NVM_DIR/nvm.sh" fi }