aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 57f87b1bf..cbecbc0b0 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -452,11 +452,10 @@ module Homebrew
bottle_args = ["--rb", formula_name]
if @tap
tap_user, tap_repo = @tap.split "/"
- # Opt-in to Bintray tap support until we switch over
- if ENV["HOMEBREW_BINTRAY_TESTING"]
- bottle_args << "--root-url=#{BottleSpecification::DEFAULT_DOMAIN}/#{Bintray.repository(@tap)}"
- else
+ if ENV["HOMEBREW_SOURCEFORGE_TESTING"]
bottle_args << "--root-url=#{BottleSpecification::DEFAULT_ROOT_URL}/#{tap_repo}"
+ else
+ bottle_args << "--root-url=#{BottleSpecification::DEFAULT_DOMAIN}/#{Bintray.repository(@tap)}"
end
end
bottle_args << { :puts_output_on_success => true }