mirror of
https://github.com/containers/podman.git
synced 2025-06-05 22:31:06 +08:00

Based on WSL2 9p support: remaps windows paths to /mnt/<drive> locations for both podman and Docker API clients. Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
21 lines
320 B
Go
21 lines
320 B
Go
//go:build !linux && !windows
|
|
// +build !linux,!windows
|
|
|
|
package specgen
|
|
|
|
func shouldResolveWinPaths() bool {
|
|
return false
|
|
}
|
|
|
|
func shouldResolveUnixWinVariant(path string) bool {
|
|
return false
|
|
}
|
|
|
|
func resolveRelativeOnWindows(path string) string {
|
|
return path
|
|
}
|
|
|
|
func winPathExists(path string) bool {
|
|
return false
|
|
}
|