1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix last commit.

This commit is contained in:
Koichi Sasada 2019-08-14 16:30:30 +09:00
parent 0971460e31
commit 1cffd5b4f0

View file

@ -357,7 +357,7 @@ class Gem::Installer
def run_pre_install_hooks # :nodoc: def run_pre_install_hooks # :nodoc:
Gem.pre_install_hooks.each do |hook| Gem.pre_install_hooks.each do |hook|
if hook.call(self) == false if hook.call(self) == false
location = " at #{$1}" if hook.inspect =~ /@(.*:\d+)/ location = " at #{$1}" if hook.inspect =~ / (.*:\d+)/
message = "pre-install hook#{location} failed for #{spec.full_name}" message = "pre-install hook#{location} failed for #{spec.full_name}"
raise Gem::InstallError, message raise Gem::InstallError, message