[rubygems/rubygems] Prefer `install_path` alias

For consistency with the rest of usages in this class.

https://github.com/rubygems/rubygems/commit/69f9ab34b1
This commit is contained in:
David Rodríguez 2021-03-17 13:36:04 +01:00 коммит произвёл git
Родитель 0710e60802
Коммит 66e539418d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -216,7 +216,7 @@ module Bundler
def cache(spec, custom_path = nil)
app_cache_path = app_cache_path(custom_path)
return unless Bundler.feature_flag.cache_all?
return if path == app_cache_path
return if install_path == app_cache_path
cached!
FileUtils.rm_rf(app_cache_path)
git_proxy.checkout if requires_checkout?