summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--project.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/project.py b/project.py
index 49633f7f..4cef856b 100644
--- a/project.py
+++ b/project.py
@@ -1547,6 +1547,11 @@ class Project(object):
1547 cmd.append(HEAD) 1547 cmd.append(HEAD)
1548 if GitCommand(self, cmd).Wait() != 0: 1548 if GitCommand(self, cmd).Wait() != 0:
1549 raise GitError("cannot initialize work tree") 1549 raise GitError("cannot initialize work tree")
1550
1551 rr_cache = os.path.join(self.gitdir, 'rr-cache')
1552 if not os.path.exists(rr_cache):
1553 os.makedirs(rr_cache)
1554
1550 self._CopyFiles() 1555 self._CopyFiles()
1551 1556
1552 def _gitdir_path(self, path): 1557 def _gitdir_path(self, path):