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