Fix typo error (single dash: -vv not --vv)
This commit is contained in:
parent
96fb28dcf9
commit
cc4734dfc1
|
@ -21,7 +21,7 @@ module VagrantPlugins
|
|||
if config.verbose
|
||||
if config.verbose.is_a? String
|
||||
if config.verbose =~ /v+$/
|
||||
options << "--#{config.verbose}"
|
||||
options << "-#{config.verbose}"
|
||||
end
|
||||
else
|
||||
options << "--verbose"
|
||||
|
|
Loading…
Reference in New Issue