mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08: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
|
|
}
|