From 3c8606b3d8451db7d40334a581cec82b9b428174 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Mon, 6 Oct 2025 20:42:06 -0700 Subject: [PATCH] ceph-dev-pipeline/build/Jenkinsfile: add missing '=' to env setting when setting DEB_BUILD_PROFILES, a '=' was missing, so the env file didn't contain an actual setting of the value. Signed-off-by: Dan Mick --- ceph-dev-pipeline/build/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index 24c9d6ad..591dfae3 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -462,7 +462,7 @@ pipeline { env.CEPH_EXTRA_CMAKE_ARGS = "${env.CEPH_EXTRA_CMAKE_ARGS} ${sccache_flag}" } sh '''#!/bin/bash - echo "DEB_BUILD_PROFILES${DEB_BUILD_PROFILES}" >> .env + echo "DEB_BUILD_PROFILES=${DEB_BUILD_PROFILES}" >> .env ''' bwc_command = "${bwc_command} -e debs" } else if ( env.DIST =~ /^(centos|rhel|rocky|fedora).*/ ) { -- 2.39.5