[rubygems/rubygems] Show also output from all commands on rubygems checkout errors

https://github.com/rubygems/rubygems/commit/1fe24e471d
This commit is contained in:
David Rodríguez 2020-06-21 14:44:19 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель 5ae80c5207
Коммит 2b73f26fde
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -24,6 +24,12 @@ class RubygemsVersionManager
def assert_system_features_not_loaded!
at_exit do
errors = if $?.nil?
""
else
all_commands_output
end
rubylibdir = RbConfig::CONFIG["rubylibdir"]
rubygems_path = rubylibdir + "/rubygems"
@ -38,8 +44,10 @@ class RubygemsVersionManager
end
if bad_loaded_features.any?
raise "the following features were incorrectly loaded:\n#{bad_loaded_features.join("\n")}"
errors += "the following features were incorrectly loaded:\n#{bad_loaded_features.join("\n")}"
end
raise errors unless errors.empty?
end
end