diff --git a/Library/Homebrew/cmd/outdated.rb b/Library/Homebrew/cmd/outdated.rb index 28bb51bf3b..caf4b2cf78 100644 --- a/Library/Homebrew/cmd/outdated.rb +++ b/Library/Homebrew/cmd/outdated.rb @@ -50,7 +50,7 @@ module Homebrew def print_outdated_json(formulae) json = [] outdated = outdated_brews(formulae) do |f, versions| - json << {:name => f.name, + json << {:name => f.full_name, :installed_versions => versions.collect(&:to_s), :current_version => f.pkg_version.to_s} end