summaryrefslogtreecommitdiff
path: root/morphlib/builder.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-12 17:19:31 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-12 17:19:31 +0100
commit2b1cff669a4a89fce54b134a61f121a1943ee06c (patch)
treeb292bfbbeba5f76b4a36d91b3783b771f944e64f /morphlib/builder.py
parentf0753bb71d4be104bcedcd8899e368948df7ae1a (diff)
downloadmorph-2b1cff669a4a89fce54b134a61f121a1943ee06c.tar.gz
Make copy_repository get a repo instead of treeish
This helps refactoring morph to get rid of treeishes.
Diffstat (limited to 'morphlib/builder.py')
-rw-r--r--morphlib/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/builder.py b/morphlib/builder.py
index 4bbf4464..336a25b3 100644
--- a/morphlib/builder.py
+++ b/morphlib/builder.py
@@ -113,7 +113,7 @@ class Factory(object):
logging.debug('Extracting %s into %s' % (treeish.repo, destdir))
if not os.path.exists(destdir):
os.mkdir(destdir)
- morphlib.git.copy_repository(treeish, destdir, msg)
+ morphlib.git.copy_repository(treeish.repo, destdir, msg)
morphlib.git.checkout_ref(destdir, treeish.ref, msg)
morphlib.git.reset_workdir(destdir, msg)
return [(sub.treeish, os.path.join(destdir, sub.path))