diff mbox series

[yocto-autobuilder-helper,1/3] scripts/run-docs-build: fix the releases.json file generation

Message ID 20260317-fix-releases-json-generation-v1-1-f57f3267c88a@bootlin.com
State New
Headers show
Series run-docs-build: fixes after bitbake docs generation updates | expand

Commit Message

Antonin Godard March 17, 2026, 12:34 p.m. UTC
After [1], we need to update the call to release-parser.py to pass the
bitbake repo path to get tags from the bitbake repo.

[1]: https://git.yoctoproject.org/yocto-autobuilder-helper/commit/?id=62d06a23f8168863777b85fa106cf5a1ebb1eade

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 scripts/run-docs-build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/run-docs-build b/scripts/run-docs-build
index edd0574..ed32412 100755
--- a/scripts/run-docs-build
+++ b/scripts/run-docs-build
@@ -98,7 +98,7 @@  tar --exclude=eclipse -xJf ${docbookarchive_localpath}
 $scriptdir/docs_add_banner.py
 
 # generate the releases.json in PWD
-$scriptdir/release-parser.py $ypdocs/..
+$scriptdir/release-parser.py "$ypdocs/.." "$bbdocs/.."
 cp releases.json "$builddir"
 
 cd $bbdocs