tool/downloader.rb: don't suppress exception

on the end of retry failure.

Fixed mistake in r61498

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2017-12-27 13:35:25 +00:00
Родитель ff6c540adb
Коммит 57e95f38b1
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -277,6 +277,8 @@ class Downloader
$stderr.puts "retrying #{e.class} (#{e.message}) after #{times ** 2} seconds..."
sleep(times ** 2)
retry
else
raise
end
end
end