##// END OF EJS Templates
largefiles: drop os.path.join() in subrepo archive override...
Matt Harbison -
r24954:e47feee5 default
parent child Browse files
Show More
@@ -985,7 +985,7 b' def hgsubrepoarchive(orig, repo, archive'
985 for subpath in sorted(ctx.substate):
985 for subpath in sorted(ctx.substate):
986 sub = ctx.sub(subpath)
986 sub = ctx.sub(subpath)
987 submatch = match_.narrowmatcher(subpath, match)
987 submatch = match_.narrowmatcher(subpath, match)
988 sub.archive(archiver, os.path.join(prefix, repo._path) + '/', submatch)
988 sub.archive(archiver, prefix + repo._path + '/', submatch)
989
989
990 # If a largefile is modified, the change is not reflected in its
990 # If a largefile is modified, the change is not reflected in its
991 # standin until a commit. cmdutil.bailifchanged() raises an exception
991 # standin until a commit. cmdutil.bailifchanged() raises an exception
General Comments 0
You need to be logged in to leave comments. Login now