aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/tap.rb
diff options
context:
space:
mode:
authorAlyssa Ross2017-09-07 12:09:52 +0100
committerAlyssa Ross2017-09-07 12:12:22 +0100
commitb6d36003b336dee36d4c11a621b4061bc0615284 (patch)
treefc85314e6f45d5323bd5e8fbead3ca718f83b42b /Library/Homebrew/tap.rb
parent5b041528aff269a003e9be786d52466002a23b2a (diff)
downloadbrew-b6d36003b336dee36d4c11a621b4061bc0615284.tar.bz2
Always output when tapping core
Hiding all output makes it look like Homebrew is hanging while the tap operation (which can take a long time!) is running. Closes #3053.
Diffstat (limited to 'Library/Homebrew/tap.rb')
-rw-r--r--Library/Homebrew/tap.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb
index f232be428..f6246aad9 100644
--- a/Library/Homebrew/tap.rb
+++ b/Library/Homebrew/tap.rb
@@ -551,11 +551,9 @@ class CoreTap < Tap
@instance ||= new
end
- def self.ensure_installed!(options = {})
+ def self.ensure_installed!
return if instance.installed?
- args = ["tap", instance.name]
- args << "-q" if options.fetch(:quiet, true)
- safe_system HOMEBREW_BREW_FILE, *args
+ safe_system HOMEBREW_BREW_FILE, "tap", instance.name
end
# @private