Skip to content
Snippets Groups Projects
Commit 684dffb2 authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

Also update Orchestra configuration

parent 294459fe
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,12 @@ def install_subcommand(sub_argparser):
def handle_update(args, config: Configuration):
failed_pulls = []
logger.info("Updating Orchestra configuration")
result = git_pull(config.orchestra_dotdir)
if result.returncode:
failed_pulls.append(f"Orchestra configuration ({config.orchestra_dotdir})")
logger.info("Updating binary archives")
os.makedirs(config.binary_archives_dir, exist_ok=True)
for name, url in config.binary_archives_remotes.items():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment