aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/download_strategy.rb
diff options
context:
space:
mode:
authorJack Nagel2014-12-09 16:02:49 -0500
committerJack Nagel2014-12-09 16:03:14 -0500
commit763e17c4baf59129904c819748c28262a06a44ac (patch)
treee7b0cdeb6b90baefa8b21f3138ca22f24be945d1 /Library/Homebrew/download_strategy.rb
parent4f25f521dc8a13da9fad044e4cec70c9d1f4c399 (diff)
downloadhomebrew-763e17c4baf59129904c819748c28262a06a44ac.tar.bz2
Use quiet_safe_system to silence CVS checkouts
Diffstat (limited to 'Library/Homebrew/download_strategy.rb')
-rw-r--r--Library/Homebrew/download_strategy.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index dddf52f04..fe10cda78 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -622,8 +622,8 @@ class CVSDownloadStrategy < VCSDownloadStrategy
mod, url = split_url(@url)
HOMEBREW_CACHE.cd do
- safe_system cvspath, "-d", url, "login"
- safe_system cvspath, "-d", url, "checkout", "-d", cache_filename, mod
+ quiet_safe_system cvspath, { :quiet_flag => "-Q" }, "-d", url, "login"
+ quiet_safe_system cvspath, { :quiet_flag => "-Q" }, "-d", url, "checkout", "-d", cache_filename, mod
end
end