mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
13 lines
171 B
Go
13 lines
171 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package manager
|
|
|
|
func trimExeSuffix(s string) (string, error) {
|
|
return s, nil
|
|
}
|
|
|
|
func addExeSuffix(s string) string {
|
|
return s
|
|
}
|