From a9bedf6ec51d59f1be23ed6ee62b6c2dfadb586c Mon Sep 17 00:00:00 2001 From: Andrew Leeming Date: Tue, 3 Jan 2017 16:05:28 +0000 Subject: Renaming root project configuration file from project.yaml to project.conf for extra clarity --- buildstream/project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildstream/project.py') diff --git a/buildstream/project.py b/buildstream/project.py index b9c181b7c..1853b0256 100644 --- a/buildstream/project.py +++ b/buildstream/project.py @@ -24,7 +24,7 @@ The :class:`.Project` object holds all of the project settings from the project configuration file including the project directory it was loaded from. -The project configuration file should be named ``project.yaml`` and +The project configuration file should be named ``project.conf`` and be located at the project root. It holds information such as Source aliases relevant for the sources used in the given project as well as overrides for the configuration of element types used in the project. @@ -96,7 +96,7 @@ class Project(): def _load(self): - projectfile = os.path.join(self.directory, "project.yaml") + projectfile = os.path.join(self.directory, "project.conf") config = _yaml.load(_site.default_project_config) project_conf = _yaml.load(projectfile) -- cgit v1.2.1