瀏覽代碼

Cope with objects already existing.

Jelmer Vernooij 16 年之前
父節點
當前提交
47fa9d0aa5
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      dulwich/object_store.py

+ 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())