mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 19:35:41 +03:00
- go-dockerclient is updated because of lack of "runtime" API field - docker/docker is updated because go-dockerclient depends on docker master branch
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
|
|
}
|