aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/tap.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb
index 774342de5..a755e5559 100644
--- a/Library/Homebrew/cmd/tap.rb
+++ b/Library/Homebrew/cmd/tap.rb
@@ -16,8 +16,9 @@ module Homebrew
else
tap = Tap.fetch(ARGV.named[0])
begin
- tap.install(:clone_target => ARGV.named[1],
- :full_clone => ARGV.include?("--full"))
+ tap.install :clone_target => ARGV.named[1],
+ :full_clone => ARGV.include?("--full"),
+ :quiet => ARGV.quieter?
rescue TapAlreadyTappedError => e
opoo e
end