github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/util/generic/executable_filename_unix.go (about)

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