mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
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
|
|
}
|