From 8560ad3ad01c7cbda18d1df81e85926f996dd449 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 6 Dec 2014 20:57:23 -0500 Subject: [PATCH] Use quiet_safe_system to silence submodule updates --- Library/Homebrew/download_strategy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index af98256b93..b6c652b8ca 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -589,7 +589,7 @@ class GitDownloadStrategy < VCSDownloadStrategy end def update_submodules - safe_system 'git', 'submodule', 'update', '--init', '--recursive' + quiet_safe_system "git", "submodule", "update", "--init", "--recursive" end def checkout_submodules(dst)