packer-cn/helper/wrappedreadline/wrappedreadline_solaris.go
2019-06-07 12:42:38 +02:00

12 lines
176 B
Go

package wrappedreadline
// getWidth impl for Solaris
func getWidth() int {
return 80
}
// get width of the terminal
func getWidthFd(stdoutFd int) int {
return getWidth()
}