##// END OF EJS Templates
largefiles: migrate to scmutil.backuppath()...
Martin von Zweigbergk -
r41738:e89e78a7 default
parent child Browse files
Show More
@@ -465,11 +465,11 b' def updatelfiles(ui, repo, filelist=None'
465 wctx = repo[None]
465 wctx = repo[None]
466 for lfile in lfiles:
466 for lfile in lfiles:
467 lfileorig = os.path.relpath(
467 lfileorig = os.path.relpath(
468 scmutil.origpath(ui, repo, wvfs.join(lfile)),
468 scmutil.backuppath(ui, repo, lfile),
469 start=repo.root)
469 start=repo.root)
470 standin = lfutil.standin(lfile)
470 standin = lfutil.standin(lfile)
471 standinorig = os.path.relpath(
471 standinorig = os.path.relpath(
472 scmutil.origpath(ui, repo, wvfs.join(standin)),
472 scmutil.backuppath(ui, repo, standin),
473 start=repo.root)
473 start=repo.root)
474 if wvfs.exists(standin):
474 if wvfs.exists(standin):
475 if (wvfs.exists(standinorig) and
475 if (wvfs.exists(standinorig) and
General Comments 0
You need to be logged in to leave comments. Login now