From 78ba328465cdd0df0bd99ca0c3b72a1bca7247f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cern=C3=BD?= Date: Thu, 2 Jan 2025 15:12:57 +0100 Subject: [PATCH] Fix missing return value in a function --- ssg/build_sce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssg/build_sce.py b/ssg/build_sce.py index bd2c0afe0b6..dda367bbb31 100644 --- a/ssg/build_sce.py +++ b/ssg/build_sce.py @@ -86,7 +86,7 @@ def _set_metadata_default_values(metadata): def _modify_sce_with_environment(sce_content, environment): if environment == "any": - return + return sce_content if environment == "bootc": condition = "(rpm -q --quiet bootc && [ -e /run/.containerenv ])" if environment == "normal":