From 6f37394e535e1dd51e670eba31b11d541cc225e4 Mon Sep 17 00:00:00 2001 From: ilovezfs Date: Sun, 29 May 2016 18:48:22 -0700 Subject: [PATCH] bintray "package" should be name not full_name Based on how it's used to construct URLs, the bintray "package" should be the formula name not the formula full_name. For core formulae, there is no difference, but that's not the case in other taps. See https://github.com/Homebrew/homebrew-gui/pull/10 Closes #301. Signed-off-by: ilovezfs --- Library/Homebrew/cmd/bottle.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index d1215f0d6d..0f65bd9cb4 100644 --- a/Library/Homebrew/cmd/bottle.rb +++ b/Library/Homebrew/cmd/bottle.rb @@ -321,7 +321,7 @@ module Homebrew } }, "bintray" => { - "package" => Utils::Bottles::Bintray.package(f.full_name), + "package" => Utils::Bottles::Bintray.package(f.name), "repository" => Utils::Bottles::Bintray.repository(f.tap), }, },