##// END OF EJS Templates
match: catch attempts to create case-insenstive exact matchers...
Martin von Zweigbergk -
r32415:9695aca1 default
parent child Browse files
Show More
@@ -120,6 +120,9 b' def match(root, cwd, patterns, include=N'
120 """
120 """
121 normalize = _donormalize
121 normalize = _donormalize
122 if icasefs:
122 if icasefs:
123 if exact:
124 raise error.Abort(_("a case-insensitive exact matcher doesn't "
125 "make sense"))
123 dirstate = ctx.repo().dirstate
126 dirstate = ctx.repo().dirstate
124 dsnormalize = dirstate.normalize
127 dsnormalize = dirstate.normalize
125
128
General Comments 0
You need to be logged in to leave comments. Login now