aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorJack Nagel2014-12-06 17:18:34 -0500
committerJack Nagel2014-12-06 17:18:34 -0500
commit885f7277bfaceb85fd2560ce3d0cedf15fb199a5 (patch)
tree56a0c0ff0e0612895756035ebeb20bcb24ea316a /Library/Homebrew
parentff0509a1efb9e4a602635baed522aeb94a618fa3 (diff)
downloadhomebrew-885f7277bfaceb85fd2560ce3d0cedf15fb199a5.tar.bz2
Use quiet_safe_system to silence CVS updates
Diffstat (limited to 'Library/Homebrew')
-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)