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