From 89329c7ff98eea0adace0cc8bbf409766e72a3f7 Mon Sep 17 00:00:00 2001 From: Wen Zhou Date: Mon, 16 May 2022 15:58:35 +0200 Subject: [PATCH] feat: enable --create-sbom to set in ci-jenkins-pipeline instead default Ref: https://github.com/adoptium/temurin-build/issues/2900 --- sbin/common/config_init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/common/config_init.sh b/sbin/common/config_init.sh index 36516765d6..701032a258 100755 --- a/sbin/common/config_init.sh +++ b/sbin/common/config_init.sh @@ -467,8 +467,8 @@ function configDefaults() { # The default behavior of whether we want to create the legacy JRE BUILD_CONFIG[CREATE_JRE_IMAGE]="false" - # Set default value to "true. If we do not want this behavior, we can update buildArg per each config file instead - BUILD_CONFIG[CREATE_SBOM]="true" + # Set default value to false, to enable different OS*jdk set in buildArgs + BUILD_CONFIG[CREATE_SBOM]="false" # The default behavior of whether we want to create a separate source archive BUILD_CONFIG[CREATE_SOURCE_ARCHIVE]="false"