...

Source file src/github.com/docker/cli/cli-plugins/manager/suffix_unix.go

Documentation: github.com/docker/cli/cli-plugins/manager

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

View as plain text