diff options
| author | Jack Nagel | 2014-12-09 16:02:49 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-09 16:03:14 -0500 |
| commit | 763e17c4baf59129904c819748c28262a06a44ac (patch) | |
| tree | e7b0cdeb6b90baefa8b21f3138ca22f24be945d1 /Library/Homebrew | |
| parent | 4f25f521dc8a13da9fad044e4cec70c9d1f4c399 (diff) | |
| download | homebrew-763e17c4baf59129904c819748c28262a06a44ac.tar.bz2 | |
Use quiet_safe_system to silence CVS checkouts
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/download_strategy.rb | 4 |
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 |
