unnecessary '!'

This commit is contained in:
Mitchell Hashimoto 2013-07-27 22:21:37 -07:00
parent 632349710e
commit aeb1fa7ecb
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ module VagrantPlugins
if Vagrant::Util::Platform.windows?
# On Windows, Ruby just uses normal '/' for path seps, so
# just replace normal Windows style seps with Unix ones.
hostpath = hostpath.to_s.gsub!("\\", "/")
hostpath = hostpath.to_s.gsub("\\", "/")
end
options ||= {}