Commit c6dd5476 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Get everything compiling again

parent 8034e91c
......@@ -41,11 +41,11 @@ func (c *comm) Start(cmd string) (remote *packer.RemoteCommand, err error) {
// Setup the remote command
remote = &packer.RemoteCommand{
stdin,
stdout,
stderr,
false,
-1,
Stdin: stdin,
Stdout: stdout,
Stderr: stderr,
Exited: false,
ExitStatus: -1,
}
log.Printf("starting remote command: %s", cmd)
......
......@@ -80,11 +80,11 @@ func (c *communicator) Start(cmd string) (rc *packer.RemoteCommand, err error) {
// Build the response object using the streams we created
rc = &packer.RemoteCommand{
stdinC,
stdoutC,
stderrC,
false,
-1,
Stdin: stdinC,
Stdout: stdoutC,
Stderr: stderrC,
Exited: false,
ExitStatus: -1,
}
// In a goroutine, we wait for the process to exit, then we set
......
......@@ -39,11 +39,11 @@ func (t *testCommunicator) Start(cmd string) (*packer.RemoteCommand, error) {
stderr, t.startErr = io.Pipe()
rc := &packer.RemoteCommand{
stdin,
stdout,
stderr,
false,
0,
Stdin: stdin,
Stdout: stdout,
Stderr: stderr,
Exited: false,
ExitStatus: 0,
}
t.startExited = &rc.Exited
......
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