From c423619cd70adc13575f999a731a5fe2383f97ab Mon Sep 17 00:00:00 2001 From: Aurelien Pupier Date: Mon, 7 Nov 2016 09:31:32 +0100 Subject: [PATCH] Remove requirements on path without space as issue was fixed in Ruby --- plugins/commands/plugin/action/install_gem.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/plugins/commands/plugin/action/install_gem.rb b/plugins/commands/plugin/action/install_gem.rb index eea66e04a..320f95e83 100644 --- a/plugins/commands/plugin/action/install_gem.rb +++ b/plugins/commands/plugin/action/install_gem.rb @@ -19,14 +19,6 @@ module VagrantPlugins sources = env[:plugin_sources] version = env[:plugin_version] - # If we're on Windows and the user data path has a space in it, - # then things won't work because of a Ruby bug. - if Vagrant::Util::Platform.windows? - if Vagrant.user_data_path.to_s.include?(" ") - raise Vagrant::Errors::PluginInstallSpace - end - end - # Install the gem plugin_name_label = plugin_name plugin_name_label += " --version '#{version}'" if version