github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/pkg/archive/copy_unix.go (about) 1 // +build !windows 2 3 package archive 4 5 import ( 6 "path/filepath" 7 ) 8 9 func normalizePath(path string) string { 10 return filepath.ToSlash(path) 11 }