aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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