##// END OF EJS Templates
match: don't util.normpath() cwd...
Matt Harbison -
r44417:8a81fa44 default
parent child Browse files
Show More
@@ -232,7 +232,7 b' def match('
232 False
232 False
233 """
233 """
234 assert os.path.isabs(root)
234 assert os.path.isabs(root)
235 cwd = util.normpath(os.path.join(root, cwd))
235 cwd = os.path.join(root, util.localpath(cwd))
236 normalize = _donormalize
236 normalize = _donormalize
237 if icasefs:
237 if icasefs:
238 dirstate = ctx.repo().dirstate
238 dirstate = ctx.repo().dirstate
General Comments 0
You need to be logged in to leave comments. Login now