bottle: use short formula name in bottle commit

This commit is contained in:
Martin Afanasjew 2016-06-02 17:42:44 +02:00
parent 822b05c9c1
commit 656c713d6c

View File

@ -427,11 +427,12 @@ module Homebrew
end end
unless ARGV.include? "--no-commit" unless ARGV.include? "--no-commit"
short_name = formula_name.split("/", -1).last
pkg_version = bottle_hash["formula"]["pkg_version"] pkg_version = bottle_hash["formula"]["pkg_version"]
path.parent.cd do path.parent.cd do
safe_system "git", "commit", "--no-edit", "--verbose", safe_system "git", "commit", "--no-edit", "--verbose",
"--message=#{formula_name}: #{update_or_add} #{pkg_version} bottle.", "--message=#{short_name}: #{update_or_add} #{pkg_version} bottle.",
"--", path "--", path
end end
end end