Update resource_provisioner.go

Better variable name.
This commit is contained in:
bdd 2014-08-25 17:39:46 -04:00
parent b2ff49be2e
commit 4a53f38d3a
1 changed files with 6 additions and 6 deletions

View File

@ -195,15 +195,15 @@ func (p *ResourceProvisioner) runScripts(conf *helper.SSHConfig, scripts []io.Re
}
cmd.Wait()
rStdOut, wStdOut := io.Pipe()
rStdErr, wStdErr := io.Pipe()
go streamLogs(rStdOut, "stdout")
go streamLogs(rStdErr, "stderr")
stdOutReader, stdOutWriter := io.Pipe()
stdErrReader, stdErrWriter := io.Pipe()
go streamLogs(stdOutReader, "stdout")
go streamLogs(stdErrReader, "stderr")
cmd = &helper.RemoteCmd{
Command: conf.ScriptPath,
Stdout: wPipe1,
Stderr: wPipe2,
Stdout: stdOutWriter,
Stderr: stdErrWriter,
}
if err := comm.Start(cmd); err != nil {
return fmt.Errorf("Error starting script: %v", err)