github.com/xeptore/docker-cli@v20.10.14+incompatible/cli-plugins/manager/suffix_unix.go (about) 1 // +build !windows 2 3 package manager 4 5 func trimExeSuffix(s string) (string, error) { 6 return s, nil 7 } 8 func addExeSuffix(s string) string { 9 return s 10 }