##// END OF EJS Templates
extdiff: pass full paths of `dir1a` and `dir1b` to `_runperfilediff()`...
Pulkit Goyal -
r45957:e7c57354 default
parent child Browse files
Show More
@@ -267,7 +267,7 b' def _runperfilediff('
267 267 waitprocs = []
268 268 totalfiles = len(commonfiles)
269 269 for idx, commonfile in enumerate(sorted(commonfiles)):
270 path1a = os.path.join(tmproot, dir1a, commonfile)
270 path1a = os.path.join(dir1a, commonfile)
271 271 label1a = commonfile + rev1a
272 272 if not os.path.isfile(path1a):
273 273 path1a = pycompat.osdevnull
@@ -275,7 +275,7 b' def _runperfilediff('
275 275 path1b = b''
276 276 label1b = b''
277 277 if do3way:
278 path1b = os.path.join(tmproot, dir1b, commonfile)
278 path1b = os.path.join(dir1b, commonfile)
279 279 label1b = commonfile + rev1b
280 280 if not os.path.isfile(path1b):
281 281 path1b = pycompat.osdevnull
@@ -499,8 +499,8 b' def diffrevs('
499 499 confirm=opts.get(b'confirm'),
500 500 commonfiles=common,
501 501 tmproot=tmproot,
502 dir1a=dir1a,
503 dir1b=dir1b,
502 dir1a=os.path.join(tmproot, dir1a),
503 dir1b=os.path.join(tmproot, dir1b) if do3way else None,
504 504 dir2root=dir2root,
505 505 dir2=dir2,
506 506 rev1a=rev1a,
General Comments 0
You need to be logged in to leave comments. Login now