bug: ``strdist.GlobPath`` produces wrong result on a corner case
rebornplusplus opened this issue · 0 comments
rebornplusplus commented
The following statement returns false
, whereas it should return true
.
strdist.GlobPath("/*foo", "/foo")
The following works as intended, returning true
.
strdist.GlobPath("/**foo", "/foo")