copy_windows.go 171 B

123456789
  1. package archive // import "github.com/docker/docker/pkg/archive"
  2. import (
  3. "path/filepath"
  4. )
  5. func normalizePath(path string) string {
  6. return filepath.FromSlash(path)
  7. }