copy_windows.go 122 B

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