Merge pull request #3689 from sjackman/pull-json

publish_bottle_file_on_bintray: Use f.full_name
This commit is contained in:
Mike McQuaid 2018-01-18 15:30:03 +00:00 committed by GitHub
commit edc6efd443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -447,7 +447,7 @@ module Homebrew
def publish_bottle_file_on_bintray(f, bintray_org, creds)
repo = Utils::Bottles::Bintray.repository(f.tap)
package = Utils::Bottles::Bintray.package(f.name)
info = FormulaInfoFromJson.lookup(f.name)
info = FormulaInfoFromJson.lookup(f.full_name)
if info.nil?
raise "Failed publishing bottle: failed reading formula info for #{f.full_name}"
end