podman-build/vendor/github.com/moby/go-archive/copy_unix.go
2025-10-11 12:30:35 +09:00

12 lines
141 B
Go

//go:build !windows
package archive
import (
"path/filepath"
)
func normalizePath(path string) string {
return filepath.ToSlash(path)
}