extlibs.rb: fixed Downloader.cache_file call and return value

`cache_dir` is an optinal argument but not a keyword argument, and
the return value is a `Pathname`.
This commit is contained in:
Nobuyoshi Nakada 2020-05-14 17:19:39 +09:00
Родитель 0a52015da7
Коммит 336119dfc5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -27,7 +27,7 @@ class ExtLibs
end
def cache_file(url, cache_dir)
Downloader.cache_file(url, nil, :cache_dir => cache_dir)
Downloader.cache_file(url, nil, cache_dir).to_path
end
def do_download(url, cache_dir)