summaryrefslogtreecommitdiff
path: root/morphlib/git.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/git.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/git.py')
-rw-r--r--morphlib/git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 0ee07259..8f9dfa94 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -242,10 +242,10 @@ def update_remote(gitdir, name, msg=logging.debug):
ex = morphlib.execute.Execute(gitdir, msg=msg)
return ex.runv(['git', 'remote', 'update', name])
-def copy_repository(treeish, destdir, msg=logging.debug):
+def copy_repository(repo, destdir, msg=logging.debug):
'''Copies a cached repository into a directory using cp.'''
ex = morphlib.execute.Execute('.', msg=msg)
- return ex.runv(['cp', '-a', os.path.join(treeish.repo, '.git'), destdir])
+ return ex.runv(['cp', '-a', os.path.join(repo, '.git'), destdir])
def checkout_ref(gitdir, ref, msg=logging.debug):
'''Checks out a specific ref/SHA1 in a git working tree.'''