copy_unix.go 190 B

1234567891011
  1. //go:build !windows
  2. package archive // import "github.com/docker/docker/pkg/archive"
  3. import (
  4. "path/filepath"
  5. )
  6. func normalizePath(path string) string {
  7. return filepath.ToSlash(path)
  8. }