Signed-off-by: John Howard <jhoward@microsoft.com> (cherry picked from commit b1b9937bc75f0db9c804838ecce9bb6792a42525) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 533b0f602d10af8fe325c3544a2411f5060a47b8 Component: engine
11 lines
329 B
Go
11 lines
329 B
Go
// +build !windows
|
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
// 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
|
|
}
|