Skip to content

Commit 689e6f2

Browse files
EE-629 fix fork parsing ( ) bug
1 parent bd19ed7 commit 689e6f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func isAlphanumeric(ch rune) bool {
173173
// isPatternChar matches characters that are allowed in patterns
174174
func isPatternChar(ch rune) bool {
175175
switch ch {
176-
case '*', '?', '.', '/', '@', '_', '+', '-', '\\':
176+
case '*', '?', '.', '/', '@', '_', '+', '-', '\\', '(', ')':
177177
return true
178178
}
179179
return isAlphanumeric(ch)

0 commit comments

Comments
 (0)