Closed ngryman closed 11 years ago
Hi,
This PR makes #exclude work properly with string parameters, with Windows paths support. This is related to #12.
#exclude
string
The substr comparison always failed as the starting index was wrong, if comparing with the end of the path was what you wanted.
substr
As the expr was not normalized, path comparison failed under Windows because registered paths were already normalized.
expr
Thanks @ngryman! And sorry for the delay in getting this in!
Hi,
This PR makes
#exclude
work properly withstring
parameters, with Windows paths support. This is related to #12.The
substr
comparison always failed as the starting index was wrong, if comparing with the end of the path was what you wanted.As the
expr
was not normalized, path comparison failed under Windows because registered paths were already normalized.