diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index dddf52f04d..fe10cda78c 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