dotcloud/docker

View on GitHub
pkg/archive/path_unix.go

Summary

Maintainability
A
0 mins
Test Coverage
//go:build !windows

package archive

// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
// of CheckSystemDriveAndRemoveDriveLetter
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
    return path, nil
}