packer-cn/helper/wrappedreadline/wrappedreadline_solaris.go

12 lines
176 B
Go
Raw Normal View History

2019-06-07 06:42:38 -04:00
package wrappedreadline
// getWidth impl for Solaris
func getWidth() int {
return 80
}
// get width of the terminal
func getWidthFd(stdoutFd int) int {
return getWidth()
}