Sign in
fuchsia
/
third_party
/
github.com
/
moby
/
moby
/
cf31b9622ae9de4b5fb7a1c9456460980ab80281
/
.
/
pkg
/
archive
/
copy_unix.go
blob: 3958364f5ba077c9f54e978a07f1e7535055bfd9 [
file
]
// +build !windows
package archive
// import "github.com/docker/docker/pkg/archive"
import (
"path/filepath"
)
func normalizePath(path string) string {
return filepath.ToSlash(path)
}