Merge pull request #3422 from alexpbrown/swap-pty-geometry
Swap width and height when allocating a pty
This commit is contained in:
commit
9f6de246c2
|
@ -94,7 +94,7 @@ func (c *comm) Start(cmd *packer.RemoteCmd) (err error) {
|
||||||
ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud
|
ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = session.RequestPty("xterm", 80, 40, termModes); err != nil {
|
if err = session.RequestPty("xterm", 40, 80, termModes); err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue