Fix typo error (single dash: -vv not --vv)

This commit is contained in:
Gilles Cornu 2013-05-07 16:57:13 +02:00
parent 96fb28dcf9
commit cc4734dfc1
1 changed files with 1 additions and 1 deletions

View File

@ -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"