Show More
@@ -390,7 +390,7 b' def _files_to_copy_post_revlog_clone(src' | |||||
390 | are cloned""" |
|
390 | are cloned""" | |
391 | for path, kind, st in sorted(srcrepo.store.vfs.readdir(b'', stat=True)): |
|
391 | for path, kind, st in sorted(srcrepo.store.vfs.readdir(b'', stat=True)): | |
392 | # don't copy revlogs as they are already cloned |
|
392 | # don't copy revlogs as they are already cloned | |
393 | if path.endswith((b'.i', b'.d', b'.n', b'.nd')): |
|
393 | if store.revlog_type(path) is not None: | |
394 | continue |
|
394 | continue | |
395 | # Skip transaction related files. |
|
395 | # Skip transaction related files. | |
396 | if path.startswith(b'undo'): |
|
396 | if path.startswith(b'undo'): |
General Comments 0
You need to be logged in to leave comments.
Login now