From: Dan Mick Date: Tue, 7 Oct 2025 03:42:06 +0000 (-0700) Subject: ceph-dev-pipeline/build/Jenkinsfile: add missing '=' to env setting X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3c8606b3d8451db7d40334a581cec82b9b428174;p=ceph-build.git 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 --- 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).*/ ) {