mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
It's only used for an integration test, and has no external consumers. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
314 B
Go
11 lines
314 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
|
|
// of CheckSystemDriveAndRemoveDriveLetter
|
|
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
|
|
return path, nil
|
|
}
|