aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorJack Nagel2012-04-16 23:52:47 -0500
committerJack Nagel2012-04-16 23:53:35 -0500
commit2e2a4920451e52891e8318e54f8bfbf975da5be7 (patch)
tree3d04286bb2062a97d7889480ef24db59bd1fe9e9 /Library/Homebrew/test
parent6e203a280c5201203bd985481031fa48061c1536 (diff)
downloadbrew-2e2a4920451e52891e8318e54f8bfbf975da5be7.tar.bz2
tests: silence `zip` output in test_bucket
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_bucket.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_bucket.rb b/Library/Homebrew/test/test_bucket.rb
index 1885ba4e8..cd8f3905f 100644
--- a/Library/Homebrew/test/test_bucket.rb
+++ b/Library/Homebrew/test/test_bucket.rb
@@ -17,7 +17,7 @@ end
class TestZip <Formula
def initialize
zip=HOMEBREW_CACHE.parent+'test-0.1.zip'
- Kernel.system '/usr/bin/zip', '-0', zip, ABS__FILE__
+ Kernel.system '/usr/bin/zip', '-q', '-0', zip, ABS__FILE__
@url="file://#{zip}"
@homepage = 'http://example.com/'
super 'testzip'