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:
commit
8cdf8c7916
|
@ -43,7 +43,7 @@ module VagrantPlugins
|
||||||
|
|
||||||
# If the executable exists, then set it as the main path
|
# If the executable exists, then set it as the main path
|
||||||
# and break out
|
# and break out
|
||||||
vboxmanage = "#{path}VBoxManage.exe"
|
vboxmanage = "#{single}VBoxManage.exe"
|
||||||
if File.file?(vboxmanage)
|
if File.file?(vboxmanage)
|
||||||
@vboxmanage_path = Vagrant::Util::Platform.cygwin_windows_path(vboxmanage)
|
@vboxmanage_path = Vagrant::Util::Platform.cygwin_windows_path(vboxmanage)
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue