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:
parent
efb9fd7b65
commit
953a380371
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue