github.com/panekj/cli@v0.0.0-20230304125325-467dd2f3797e/cli-plugins/manager/suffix_unix.go (about)

     1  //go:build !windows
     2  // +build !windows
     3  
     4  package manager
     5  
     6  func trimExeSuffix(s string) (string, error) {
     7  	return s, nil
     8  }
     9  
    10  func addExeSuffix(s string) string {
    11  	return s
    12  }