ab35df454d
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
280 B
Go
10 lines
280 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
// getLongPathName converts Windows short pathnames to full pathnames.
|
|
// For example C:\Users\ADMIN~1 --> C:\Users\Administrator.
|
|
// It is a no-op on non-Windows platforms
|
|
func getLongPathName(path string) (string, error) {
|
|
return path, nil
|
|
}
|