Merge pull request #3776 from agilebarbecue/master

provisioners/puppet: fix windows guest with puppet and a facter block
This commit is contained in:
Mitchell Hashimoto 2014-05-13 09:49:31 -07:00
commit 388cf34d04
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ module VagrantPlugins
# If we're on Windows, we need to use the PowerShell style
if windows?
facts.map! { |v| "$env:#{v}" }
facts.map! { |v| "$env:#{v};" }
end
facter = "#{facts.join(" ")} "