Use quiet_safe_system to silence CVS checkouts

This commit is contained in:
Jack Nagel 2014-12-09 16:02:49 -05:00
parent e9c368b92e
commit bec5e0671f

View File

@ -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