GlobPathToRegexp converts an rsync style glob path to a regexp
(glob string, ignoreCase bool)
| 13 | |
| 14 | // GlobPathToRegexp converts an rsync style glob path to a regexp |
| 15 | func GlobPathToRegexp(glob string, ignoreCase bool) (*regexp.Regexp, error) { |
| 16 | return globToRegexp(glob, true, true, ignoreCase) |
| 17 | } |
| 18 | |
| 19 | // GlobStringToRegexp converts an rsync style glob string to a regexp |
| 20 | // |
searching dependent graphs…