Removing tabs added by a bad .vimrc

This commit is contained in:
John Barney 2013-02-10 03:49:15 -08:00
parent 416a765417
commit a390b9dddf
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ module Vagrant
end
def cygwin?
platform.include?("cygwin")
platform.include?("cygwin")
end
[:darwin, :bsd, :freebsd, :linux, :solaris].each do |type|

View File

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