aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-12-06 20:57:23 -0500
committerJack Nagel2014-12-06 20:57:23 -0500
commit8560ad3ad01c7cbda18d1df81e85926f996dd449 (patch)
tree9dd3d861c75e9fd56d6d09b0225e16edf762e5ad /Library
parent04d287e8db734a5ae4e049d708864e2c6532f1c4 (diff)
downloadbrew-8560ad3ad01c7cbda18d1df81e85926f996dd449.tar.bz2
Use quiet_safe_system to silence submodule updates
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index af98256b9..b6c652b8c 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)