copy_unix.go 140 B

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