Skip to content
Snippets Groups Projects
Commit 23ee1ee4 authored by Andrew Janke's avatar Andrew Janke Committed by Xu Cheng
Browse files

brew pull: fix encoding of `brew info --json` output


Fixes Homebrew/homebrew#49757
Closes Homebrew/homebrew#49775

Closes Homebrew/homebrew#49947.

Signed-off-by: default avatarAndrew Janke <andrew@apjanke.net>
parent ad5ee6a3
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,7 @@ module Homebrew
def current_versions_from_info_external(formula_name)
versions = {}
json = Utils.popen_read(HOMEBREW_BREW_FILE, "info", "--json=v1", formula_name)
json.force_encoding("UTF-8") if json.respond_to?(:force_encoding)
if $?.success?
info = Utils::JSON.load(json)
[:stable, :devel, :head].each do |vertype|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment