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