packer-cn/helper/wrappedreadline/wrappedreadline_solaris.go

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()
}