blob: 065bd4addaea8f090fa20e56c37ea918f7e395ca [file] [edit]
//go:build !windows
package archive // import "github.com/docker/docker/pkg/archive"
import (
"path/filepath"
)
func normalizePath(path string) string {
return filepath.ToSlash(path)
}