Commit 8a426bea authored by Chris Bednarski's avatar Chris Bednarski

Merge pull request #2505 from pecigonzalo/b-windows-variables_errors

Fix powershell elevated not setting variables properly.
parents 0c765435 21107b00
......@@ -399,7 +399,7 @@ func (p *Provisioner) createCommandText() (command string, err error) {
Vars: flattenedEnvVars,
Path: p.config.RemotePath,
}
command, err = interpolate.Render(p.config.ExecuteCommand, &p.config.ctx)
command, err = interpolate.Render(p.config.ElevatedExecuteCommand, &p.config.ctx)
if err != nil {
return "", fmt.Errorf("Error processing command: %s", err)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment