From b78ed5af04bd5e563073f66b8e5dd066e33ac9c3 Mon Sep 17 00:00:00 2001 From: Ihor Usyk Date: Tue, 27 Apr 2021 14:52:01 +0200 Subject: [PATCH] The path to the manifest of the product is changed. The manifests of the products are moved from the repository 'meta-xt-products' to the manifests one, the path to the prod_[name].xml needs to be extended with the name of the product folder. Signed-off-by: Ihor Usyk --- build_prod.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_prod.py b/build_prod.py index 5572cb2..45471be 100755 --- a/build_prod.py +++ b/build_prod.py @@ -125,8 +125,9 @@ def buildhistory_commit(cfg): def repo_init(uri, branch, xml_base_name): + prod_manifest_path = xml_base_name.replace("-", "_") + "/" + xml_base_name bash_run_command('repo init -u %s -b %s -m %s.xml' % - (uri, branch, xml_base_name)) + (uri, branch, prod_manifest_path)) def repo_sync():