changeset 50541 | e6948aafda6f |
parent 50530 | f4a540c203d7 |
child 50542 | dc201a09e82c |
50537:9db197c73138 | 50541:e6948aafda6f |
---|---|
22 from .utils import stringutil |
22 from .utils import stringutil |
23 |
23 |
24 urlreq = util.urlreq |
24 urlreq = util.urlreq |
25 |
25 |
26 CB_MANIFEST_FILE = b'clonebundles.manifest' |
26 CB_MANIFEST_FILE = b'clonebundles.manifest' |
27 |
|
28 def get_manifest(repo): |
|
29 return repo.vfs.tryread(CB_MANIFEST_FILE) |
|
27 |
30 |
28 |
31 |
29 @attr.s |
32 @attr.s |
30 class bundlespec: |
33 class bundlespec: |
31 compression = attr.ib() |
34 compression = attr.ib() |