diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index 0f65bd9cb47e06008d669984ae3bb0b3a54f336c..36c71f75a832ae796d7f5ecc06db561528ac9f7c 100644 --- a/Library/Homebrew/cmd/bottle.rb +++ b/Library/Homebrew/cmd/bottle.rb @@ -427,11 +427,12 @@ module Homebrew end unless ARGV.include? "--no-commit" + short_name = formula_name.split("/", -1).last pkg_version = bottle_hash["formula"]["pkg_version"] path.parent.cd do 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 end end