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:
commit
72d62e3d2e
|
@ -216,7 +216,7 @@ module VagrantPlugins
|
||||||
|
|
||||||
# If we're on Windows, we need to use the PowerShell style
|
# If we're on Windows, we need to use the PowerShell style
|
||||||
if windows?
|
if windows?
|
||||||
facts.map! { |v| "`$env:#{v};" }
|
facts.map! { |v| "$env:#{v};" }
|
||||||
end
|
end
|
||||||
|
|
||||||
facter = "#{facts.join(" ")} "
|
facter = "#{facts.join(" ")} "
|
||||||
|
|
Loading…
Reference in New Issue