diff options
-rw-r--r-- | project.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1081,6 +1081,12 @@ class Project(object): | |||
1081 | _warn("Cannot remove archive %s: %s", tarpath, str(e)) | 1081 | _warn("Cannot remove archive %s: %s", tarpath, str(e)) |
1082 | self._CopyAndLinkFiles() | 1082 | self._CopyAndLinkFiles() |
1083 | return True | 1083 | return True |
1084 | |||
1085 | # If the shared object dir already exists, don't try to rebootstrap with a | ||
1086 | # clone bundle download. We should have the majority of objects already. | ||
1087 | if clone_bundle and os.path.exists(self.objdir): | ||
1088 | clone_bundle = False | ||
1089 | |||
1084 | if is_new is None: | 1090 | if is_new is None: |
1085 | is_new = not self.Exists | 1091 | is_new = not self.Exists |
1086 | if is_new: | 1092 | if is_new: |