github.com/hashicorp/packer@v1.14.3/helper/wrappedreadline/wrappedreadline_solaris.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  package wrappedreadline
     5  
     6  // getWidth impl for Solaris
     7  func getWidth() int {
     8  	return 80
     9  }
    10  
    11  // get width of the terminal
    12  func getWidthFd(stdoutFd int) int {
    13  	return getWidth()
    14  }