github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/util/generic/executable_filename_unix.go (about)

     1  //go:build !windows
     2  // +build !windows
     3  
     4  package generic
     5  
     6  // ExecutableFilename appends does something on Windows, but it is a no-op
     7  // on the many flavors of UNIX.
     8  func ExecutableFilename(name string) string {
     9  	return name
    10  }