##// END OF EJS Templates
largefiles: check if largefile could be found when archiving (issue3193)
Na'Tosha Bard -
r15914:26408794 default
parent child Browse files
Show More
@@ -720,6 +720,10 b' def override_archive(orig, repo, dest, n'
720 getdata = ctx[f].data
720 getdata = ctx[f].data
721 if lfutil.isstandin(f):
721 if lfutil.isstandin(f):
722 path = lfutil.findfile(repo, getdata().strip())
722 path = lfutil.findfile(repo, getdata().strip())
723 if path is None:
724 raise util.Abort(
725 _('largefile %s not found in repo store or system cache')
726 % lfutil.splitstandin(f))
723 f = lfutil.splitstandin(f)
727 f = lfutil.splitstandin(f)
724
728
725 def getdatafn():
729 def getdatafn():
General Comments 0
You need to be logged in to leave comments. Login now