2
0
Эх сурвалжийг харах

Cope with objects already existing.

Jelmer Vernooij 16 жил өмнө
parent
commit
47fa9d0aa5

+ 2 - 0
dulwich/object_store.py

@@ -199,6 +199,8 @@ class DiskObjectStore(BaseObjectStore):
         if not os.path.isdir(dir):
             os.mkdir(dir)
         path = os.path.join(dir, sha[2:])
+        if os.path.exists(path):
+            return # Already there, no need to write again
         f = open(path, 'w+')
         try:
             f.write(o.as_legacy_object())