Merge pull request #39 from abraunegg/Issue-#15

Fix: skip_file config entry needs to be checked for any characters to escape (Issue #15)
This commit is contained in:
abraunegg 2018-06-30 09:11:35 +10:00 committed by GitHub
commit 6199b40c56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,6 +95,9 @@ Regex!char wild2regex(const(char)[] pattern)
case '|':
str ~= "$|^";
break;
case '+':
str ~= "\\+";
break;
default:
str ~= c;
break;