aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/bottles.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/bottles.rb')
-rw-r--r--Library/Homebrew/bottles.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/bottles.rb b/Library/Homebrew/bottles.rb
index ecbf70cc0..3fe921d7b 100644
--- a/Library/Homebrew/bottles.rb
+++ b/Library/Homebrew/bottles.rb
@@ -67,7 +67,7 @@ class Bintray
end
def self.repository(tap=nil)
- return "bottles" if tap.to_s.empty?
+ return "bottles" if tap.nil? || tap == "Homebrew/homebrew" || tap == "mxcl/master"
"bottles-#{tap.sub(/^homebrew\/(homebrew-)?/i, "")}"
end
end