Merge pull request #3549 from javornikolov/fix-vbox-install-path-detect-on-windows

providers/virtualbox: Fix vbox install path detection on Windows 8
This commit is contained in:
Mitchell Hashimoto 2014-04-27 15:56:37 -07:00
commit 8cdf8c7916
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ module VagrantPlugins
# If the executable exists, then set it as the main path
# and break out
vboxmanage = "#{path}VBoxManage.exe"
vboxmanage = "#{single}VBoxManage.exe"
if File.file?(vboxmanage)
@vboxmanage_path = Vagrant::Util::Platform.cygwin_windows_path(vboxmanage)
break