diff options
author | 2009-12-29 14:22:06 +0100 | |
---|---|---|
committer | 2009-12-29 15:21:35 +0100 | |
commit | 1fffa93607c68947ae4eea18bf22f95e0d514a66 (patch) | |
tree | 8633b54de7cff129e56de3078472e6e7d9f01194 /layman/overlays/overlay.py | |
parent | Pass config down to Overlay instances (diff) | |
download | overlord-1fffa93607c68947ae4eea18bf22f95e0d514a66.tar.gz overlord-1fffa93607c68947ae4eea18bf22f95e0d514a66.tar.bz2 overlord-1fffa93607c68947ae4eea18bf22f95e0d514a66.zip |
Allow overriding VCS commands
Diffstat (limited to 'layman/overlays/overlay.py')
-rw-r--r-- | layman/overlays/overlay.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py index 580ff47..4f245ec 100644 --- a/layman/overlays/overlay.py +++ b/layman/overlays/overlay.py @@ -349,6 +349,9 @@ class Overlay: return self.status == 'official' + def command(self): + return self.config['%s_command' % self.__class__.type_key] + #================================================================================ # # Testing |