aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-12-09 16:02:49 -0500
committerJack Nagel2014-12-09 16:03:14 -0500
commitbec5e0671f5560544680db6585f147a3d83ac91a (patch)
treef845a61b24b93485b9f84fe2367b682af32ee9f7 /Library
parente9c368b92e9b5461d0218ae21089b66c463691e8 (diff)
downloadbrew-bec5e0671f5560544680db6585f147a3d83ac91a.tar.bz2
Use quiet_safe_system to silence CVS checkouts
Diffstat (limited to 'Library')
-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