From cd968477f79625ff936e1b2a638d2d39160b024b Mon Sep 17 00:00:00 2001 From: Matthew Franglen Date: Mon, 8 May 2017 21:07:51 +0100 Subject: [PATCH] Clone repo silently Currently the git clone will write the following to stderr: Cloning into '/${HOME}/.oh-my-zsh'... This silences that message. References #3251 --- tools/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install.sh b/tools/install.sh index 3f4de868..40c17623 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -61,7 +61,7 @@ main() { exit 1 fi fi - env git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git $ZSH || { + env git clone --depth=1 --quiet https://github.com/robbyrussell/oh-my-zsh.git $ZSH || { printf "Error: git clone of oh-my-zsh repo failed\n" exit 1 }