diff options
| author | ilovezfs | 2016-05-29 18:48:22 -0700 |
|---|---|---|
| committer | ilovezfs | 2016-05-30 02:26:31 -0700 |
| commit | 6f37394e535e1dd51e670eba31b11d541cc225e4 (patch) | |
| tree | a2daefce2cdab3e24684e5c3fc93d984955e9ce2 /Library | |
| parent | 01b6787aa8969eeae26be401371e890d5924b992 (diff) | |
| download | brew-6f37394e535e1dd51e670eba31b11d541cc225e4.tar.bz2 | |
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 <ilovezfs@icloud.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/bottle.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index d1215f0d6..0f65bd9cb 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), }, }, |
