Update Library/Homebrew/dev-cmd/bump.rb

Co-authored-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Baffour Adu Boampong 2020-08-17 14:52:15 +00:00 committed by GitHub
parent 2cebb91090
commit 49882571ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,9 +78,9 @@ module Homebrew
title = (up_to_date?(package_details) ? "#{formula} is up to date!" : formula).to_s
ohai title
puts "Current formula version: #{package_details[:current_formula_version]}"
puts "Latest Repology version: #{package_details[:repology_latest_version] || "Not found"}"
puts "Latest livecheck version: #{package_details[:livecheck_latest_version] || "Not found"}"
puts "Open pull requests: #{package_details[:open_pull_requests] || "None"}"
puts "Latest Repology version: #{package_details[:repology_latest_version] || "not found"}"
puts "Latest livecheck version: #{package_details[:livecheck_latest_version] || "not found"}"
puts "Open pull requests: #{package_details[:open_pull_requests] || "none"}"
end
end
end