aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/software_spec.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-02-19 16:57:30 +0000
committerMike McQuaid2015-02-19 16:57:30 +0000
commit77d47de3b482b78782dec7fdd1392a7dee436a38 (patch)
tree43b6ce592982b5fee513eded70a19613d5f22271 /Library/Homebrew/software_spec.rb
parentca119fe7fee6c0f94eaac45bcc24749d42d0cd80 (diff)
downloadbrew-77d47de3b482b78782dec7fdd1392a7dee436a38.tar.bz2
Switch bottle provider over to Bintray.
Diffstat (limited to 'Library/Homebrew/software_spec.rb')
-rw-r--r--Library/Homebrew/software_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/software_spec.rb b/Library/Homebrew/software_spec.rb
index a0e3ab7a9..557f1cccb 100644
--- a/Library/Homebrew/software_spec.rb
+++ b/Library/Homebrew/software_spec.rb
@@ -251,11 +251,11 @@ end
class BottleSpecification
DEFAULT_PREFIX = "/usr/local".freeze
DEFAULT_CELLAR = "/usr/local/Cellar".freeze
- if ENV["HOMEBREW_BINTRAY_TESTING"]
+ if ENV["HOMEBREW_SOURCEFORGE_TESTING"]
+ DEFAULT_ROOT_URL = "https://downloads.sf.net/project/machomebrew/Bottles".freeze
+ else
DEFAULT_DOMAIN = "https://homebrew.bintray.com".freeze
DEFAULT_ROOT_URL = "#{DEFAULT_DOMAIN}/bottles".freeze
- else
- DEFAULT_ROOT_URL = "https://downloads.sf.net/project/machomebrew/Bottles".freeze
end
attr_rw :root_url, :prefix, :cellar, :revision