Hello!
I noticed some issues running this library on Windows. Using os.PathSeparator here converts this path /test/public into this regexp "\\Atest\\public\\.*\\z" and this makes the regexp.Compile function return this error:
error parsing regexp: invalid character class range: `\pu`
This specific issue can be fixed by always using / as a separator but I don't know if it introduces errors in other functions.
Hello!
I noticed some issues running this library on Windows. Using
os.PathSeparatorhere converts this path/test/publicinto this regexp"\\Atest\\public\\.*\\z"and this makes theregexp.Compilefunction return this error:This specific issue can be fixed by always using
/as a separator but I don't know if it introduces errors in other functions.