checkout: New plugin

This plugin checks out all necessary repositories and sets up the build
directory as specificed in the configuration file.

Signed-off-by: Paul Barker <pbarker@konsulko.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Paul Barker
2020-11-13 19:34:54 +01:00
committed by Jan Kiszka
parent baacd3a8b9
commit a8b5c79326
3 changed files with 70 additions and 0 deletions

View File

@@ -40,9 +40,11 @@ def load():
"""
from . import build
from . import forallrepos
from . import checkout
from . import shell
register_plugins(build)
register_plugins(checkout)
register_plugins(forallrepos)
register_plugins(shell)