Fix how Vagrant assigns cli arguments for the create command

This commit inlines the flag assignments so that arguments are properly
assigned to flags rather than arguments to the subcommand.
This commit is contained in:
Brian Cain 2019-03-04 13:44:21 -08:00
parent efb9fd7b65
commit 953a380371
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ module VagrantPlugins
# `docker network create` doesn't care about these options
next
else
cli_opts.concat(["--#{opt}", value])
cli_opts.concat(["--#{opt}=#{value.to_s}"])
end
end