mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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(" ")} "
|
||||
|
|
|
|||
Loading…
Reference in a new issue