mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
10 lines
183 B
Go
10 lines
183 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package build
|
|
|
|
// getLongPathName is a no-op on non-Windows platforms.
|
|
func getLongPathName(path string) (string, error) {
|
|
return path, nil
|
|
}
|