summaryrefslogtreecommitdiff
path: root/morphlib/sysbranchdir.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-08-08 15:09:57 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-08-14 16:26:53 +0000
commitb6c7f1eb2c76ac3847d5b6da60b9c31a0a69d875 (patch)
tree59492ef096d0eeadff46e90513a5901315dda1a7 /morphlib/sysbranchdir.py
parentb2e6814127f12fee3ce9bc5a9f40d20148353c2e (diff)
downloadmorph-b6c7f1eb2c76ac3847d5b6da60b9c31a0a69d875.tar.gz
Add SystemBranchDirectory.get_filename method
Diffstat (limited to 'morphlib/sysbranchdir.py')
-rw-r--r--morphlib/sysbranchdir.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/morphlib/sysbranchdir.py b/morphlib/sysbranchdir.py
index 7e278dce..827f150b 100644
--- a/morphlib/sysbranchdir.py
+++ b/morphlib/sysbranchdir.py
@@ -100,6 +100,15 @@ class SystemBranchDirectory(object):
return os.path.join(self.root_directory, relative)
+ def get_filename(self, repo_url, relative):
+ '''Return full pathname to a file in a checked out repository.
+
+ This is a convenience function.
+
+ '''
+
+ return os.path.join(self.get_git_directory_name(repo_url), relative)
+
def clone_cached_repo(self, cached_repo, checkout_ref):
'''Clone a cached git repository into the system branch directory.