Files
podman/pkg/specgen/winpath_unsupported.go
Oleksandr Redko 2a2d0b0e18 chore: delete obsolete // +build lines
Signed-off-by: Oleksandr Redko <Oleksandr_Redko@epam.com>
2024-01-04 11:53:38 +02:00

20 lines
294 B
Go

//go: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
}