Do not list / load dependencies if `vagrant` spec is not loaded

in `vagrant_internal_specs` as this fails, due to `find` returning `nil`.
This commit is contained in:
Pavel Valena 2019-07-01 17:44:54 +02:00 committed by GitHub
parent 4ce8d84f7e
commit 38a48ea0dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -421,8 +421,9 @@ module Vagrant
def vagrant_internal_specs
# activate any dependencies up front so we can always
# pin them when resolving
Gem::Specification.find { |s| s.name == "vagrant" && s.activated? }.
runtime_dependencies.each { |d| gem d.name, *d.requirement.as_list }
if (vs = Gem::Specification.find { |s| s.name == "vagrant" && s.activated? })
vs.runtime_dependencies.each { |d| gem d.name, *d.requirement.as_list }
end
# discover all the gems we have available
list = {}
directories = [Gem::Specification.default_specifications_dir]