fix: add missing comma

windows-fixes
TorchedSammy 2022-02-27 19:24:02 -04:00
parent 3165552c21
commit df6a2bb0c7
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func matchPath(path, pref string) ([]string, error) {
"(", "\\(",
")", "\\)",
"[", "\\[",
"]", "\\]"
"]", "\\]",
}
r := strings.NewReplacer(args...)