aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/tap.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb
index c7fb0733e..35e12a120 100644
--- a/Library/Homebrew/cmd/tap.rb
+++ b/Library/Homebrew/cmd/tap.rb
@@ -6,6 +6,9 @@ module Homebrew
puts Tap.names
elsif ARGV.first == "--repair"
migrate_taps :force => true
+ elsif ARGV.first == "--list-official"
+ require "official_taps"
+ puts OFFICIAL_TAPS.map { |t| "homebrew/#{t}" } * "\n"
else
user, repo = tap_args
clone_target = ARGV.named[1]