소스 검색

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