vcs.rb: update the given option to VCS.detect by keyword arguments

This commit is contained in:
Nobuyoshi Nakada 2021-02-08 23:56:19 +09:00
Родитель a0faad38ce
Коммит dfff1df95c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -65,7 +65,8 @@ class VCS
@@dirs << [dir, self, pred]
end
def self.detect(path = '.', options = {}, parser = nil)
def self.detect(path = '.', options = {}, parser = nil, **opts)
options.update(opts)
uplevel_limit = options.fetch(:uplevel_limit, 0)
curr = path
begin