aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-12-06 17:18:34 -0500
committerJack Nagel2014-12-06 17:18:34 -0500
commit37c08393dbd482c4cfc37a0ec346564f8532257b (patch)
treeee5ad82bde16f5b01049d5d2363437898273b528 /Library
parent7e844cad1c23e0785fca22345e187c3a7c21b270 (diff)
downloadbrew-37c08393dbd482c4cfc37a0ec346564f8532257b.tar.bz2
Use quiet_safe_system to silence CVS updates
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 5a661b3d6..496b1f291 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -628,7 +628,7 @@ class CVSDownloadStrategy < VCSDownloadStrategy
end
def update
- @clone.cd { safe_system cvspath, "up" }
+ @clone.cd { quiet_safe_system cvspath, { :quiet_flag => "-Q" }, "up" }
end
def split_url(in_url)