Merge pull request #6404 from timotei/patch-1

Remove back tick in puppet facts definitions #6403 (Fix vagrant 1.7.3+ with puppet)
This commit is contained in:
Seth Vargo 2015-11-18 14:02:48 -08:00
commit 72d62e3d2e
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,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(" ")} "