##// END OF EJS Templates
subrepo: use correct paths for subrepos with ..-relative paths on windows...
Mads Kiilerich -
r15498:ac5a340b stable
parent child Browse files
Show More
@@ -223,7 +223,7 b' def _abssource(repo, push=False, abort=T'
223 source.path = posixpath.normpath(source.path)
223 source.path = posixpath.normpath(source.path)
224 parent = _abssource(repo._subparent, push, abort=False)
224 parent = _abssource(repo._subparent, push, abort=False)
225 if parent:
225 if parent:
226 parent = util.url(parent)
226 parent = util.url(util.pconvert(parent))
227 parent.path = posixpath.join(parent.path or '', source.path)
227 parent.path = posixpath.join(parent.path or '', source.path)
228 parent.path = posixpath.normpath(parent.path)
228 parent.path = posixpath.normpath(parent.path)
229 return str(parent)
229 return str(parent)
General Comments 0
You need to be logged in to leave comments. Login now