mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 16:35:45 +00: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>
20 lines
320 B
Go
20 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
|
|
}
|