hooks: docs: Ensure the hodoc config has a gst_plugin_library field before using it

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8476>
This commit is contained in:
Thibault Saunier 2025-02-13 11:48:17 -03:00 committed by GStreamer Marge Bot
parent 5ffa6902c3
commit 7a70860ac0

View File

@ -103,8 +103,9 @@ def get_hotdoc_confs_to_rebuild(builddir, modified_files) -> Tuple[Set, Set]:
if hotdoc_conf_needs_rebuild(conf_path, conf_data, modified_fpaths):
confs_need_rebuild.add(conf_path)
caches_need_rebuild.add(conf_data.get('gst_plugin_library'))
gst_plugin_library = conf_data.get('gst_plugin_library')
if gst_plugin_library:
caches_need_rebuild.add(gst_plugin_library)
return (confs_need_rebuild, caches_need_rebuild)
def build(builddir):