blob: 2ac7729f4cf59833f872a5a4bff95a8d9ce9a187 [file] [log] [blame]
//go:build !windows
// +build !windows
package archive // import "github.com/docker/docker/pkg/archive"
import (
"path/filepath"
)
func normalizePath(path string) string {
return filepath.ToSlash(path)
}