2022-08-24 22:10:51 +02:00

9 lines
158 B
Go

//go:build !windows
package processors
// normalizePathInRegex it's a noop function on Unix.
func normalizePathInRegex(path string) string {
return path
}