summaryrefslogtreecommitdiff
path: root/morphlib/builder.py
diff options
context:
space:
mode:
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))