Skip to content
Snippets Groups Projects
Commit 460048bc authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #3302 from maxim-belkin/readall-multiple-taps

readall: allow readall-ing multiple taps at once
parents 15096e72 ad3886b4
No related branches found
No related tags found
No related merge requests found
#: @hide_from_man_page
#: * `readall` [tap]:
#: Import all formulae in a tap (defaults to core tap).
#: Import all formulae from specified taps (defaults to
#: all installed taps).
#:
#: This can be useful for debugging issues across all formulae
#: when making significant changes to `formula.rb`,
......@@ -31,7 +32,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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment