mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-16 00:17:07 +08: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
|
|
}
|