aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMaxim Belkin2017-10-10 17:54:42 -0500
committerMaxim Belkin2017-10-10 17:54:42 -0500
commit4c0e623bd4df99239eec0d0f1662cd5bb07f58aa (patch)
tree1a04796dc3c590a4d3a659e4dbda71e83d85f4e8 /Library
parent56458f03fcc68ef6d8ee3ee4a7c1d16021aa5800 (diff)
downloadbrew-4c0e623bd4df99239eec0d0f1662cd5bb07f58aa.tar.bz2
readall: allow readall-ing multiple taps at once
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/readall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/readall.rb b/Library/Homebrew/cmd/readall.rb
index 3591e0c09..44128bf90 100644
--- a/Library/Homebrew/cmd/readall.rb
+++ b/Library/Homebrew/cmd/readall.rb
@@ -31,7 +31,7 @@ module Homebrew
taps = if ARGV.named.empty?
Tap
else
- [Tap.fetch(ARGV.named.first)]
+ ARGV.named.map { |t| Tap.fetch(t) }
end
taps.each do |tap|
Homebrew.failed = true unless Readall.valid_tap?(tap, options)