Removing tabs added by a bad .vimrc
This commit is contained in:
parent
416a765417
commit
a390b9dddf
|
@ -15,7 +15,7 @@ module Vagrant
|
|||
end
|
||||
|
||||
def cygwin?
|
||||
platform.include?("cygwin")
|
||||
platform.include?("cygwin")
|
||||
end
|
||||
|
||||
[:darwin, :bsd, :freebsd, :linux, :solaris].each do |type|
|
||||
|
|
|
@ -35,7 +35,7 @@ module VagrantPlugins
|
|||
path = ENV["VBOX_INSTALL_PATH"]
|
||||
if Vagrant::Util::Platform.cygwin?
|
||||
path = `cygpath -u '#{path}'`.chomp
|
||||
end
|
||||
end
|
||||
@logger.debug("VBOX_INSTALL_PATH value: #{path}")
|
||||
|
||||
# There can actually be multiple paths in here, so we need to
|
||||
|
@ -47,7 +47,7 @@ module VagrantPlugins
|
|||
# If the executable exists, then set it as the main path
|
||||
# and break out
|
||||
vboxmanage = "#{path}VBoxManage.exe"
|
||||
if File.file?(vboxmanage)
|
||||
if File.file?(vboxmanage)
|
||||
@vboxmanage_path = vboxmanage
|
||||
break
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue