mirror of https://github.com/docker/cli.git
11 lines
150 B
Go
11 lines
150 B
Go
|
// +build !windows
|
||
|
|
||
|
package manager
|
||
|
|
||
|
func trimExeSuffix(s string) (string, error) {
|
||
|
return s, nil
|
||
|
}
|
||
|
func addExeSuffix(s string) string {
|
||
|
return s
|
||
|
}
|