mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Support the current stable version of Ruby like 2.5 and 2.6.
This commit is contained in:
parent
221ba9b66c
commit
7664b5cb65
1 changed files with 2 additions and 2 deletions
|
@ -357,7 +357,7 @@ class Gem::Installer
|
|||
def run_pre_install_hooks # :nodoc:
|
||||
Gem.pre_install_hooks.each do |hook|
|
||||
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}"
|
||||
raise Gem::InstallError, message
|
||||
|
@ -370,7 +370,7 @@ class Gem::Installer
|
|||
if hook.call(self) == false
|
||||
FileUtils.rm_rf gem_dir
|
||||
|
||||
location = " at #{$1}" if hook.inspect =~ / (.*:\d+)/
|
||||
location = " at #{$1}" if hook.inspect =~ /[ @](.*:\d+)/
|
||||
|
||||
message = "post-build hook#{location} failed for #{spec.full_name}"
|
||||
raise Gem::InstallError, message
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue