From 4e589280384e746b37f7a2e9be6eecc52946d224 Mon Sep 17 00:00:00 2001 From: Filippo Cremonese <filippocremonese@rev.ng> Date: Wed, 14 Oct 2020 14:57:42 +0200 Subject: [PATCH] Move binary_archives to binary-archives --- orchestra/model/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestra/model/configuration.py b/orchestra/model/configuration.py index 0a83bd9..ab96388 100644 --- a/orchestra/model/configuration.py +++ b/orchestra/model/configuration.py @@ -47,7 +47,7 @@ class Configuration: self.binary_archives_dir = self.parsed_yaml.get("paths", {}).get("binary_archives") if not self.binary_archives_dir: - self.binary_archives_dir = os.path.realpath(os.path.join(self.orchestra_dotdir, "binary_archives")) + self.binary_archives_dir = os.path.realpath(os.path.join(self.orchestra_dotdir, "binary-archives")) self.tmproot = self.parsed_yaml.get("paths", {}).get("tmproot") if not self.tmproot: -- GitLab