diff --git a/lib/vagrant/util/platform.rb b/lib/vagrant/util/platform.rb index 38e177f07..9605c2bc9 100644 --- a/lib/vagrant/util/platform.rb +++ b/lib/vagrant/util/platform.rb @@ -200,7 +200,7 @@ module Vagrant path = path.gsub("/", "\\") # If the path is just a drive letter, then return that as-is - return path if path =~ /^[a-zA-Z]:\\?$/ + return path + "\\" if path =~ /^[a-zA-Z]:\\?$/ # Convert to UNC path "\\\\?\\" + path.gsub("/", "\\")