Fix bad options
This commit is contained in:
parent
d425193e42
commit
c743d88ad6
|
@ -29,6 +29,10 @@ module VagrantPlugins
|
||||||
# This validates the provisioner flags and raises an exception
|
# This validates the provisioner flags and raises an exception
|
||||||
# if there are invalid ones.
|
# if there are invalid ones.
|
||||||
def validate_provisioner_flags!(options, argv)
|
def validate_provisioner_flags!(options, argv)
|
||||||
|
if options[:provision_types].nil?
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
provisioner_names = Set.new
|
provisioner_names = Set.new
|
||||||
with_target_vms(argv) do |machine|
|
with_target_vms(argv) do |machine|
|
||||||
machine.config.vm.provisioners.map(&:name).each do |name|
|
machine.config.vm.provisioners.map(&:name).each do |name|
|
||||||
|
|
Loading…
Reference in New Issue