From 75b37b28b2e9abf1fc5b97f46dd60130dd63ed91 Mon Sep 17 00:00:00 2001
From: Christian Poessinger <christian@poessinger.com>
Date: Sun, 22 Aug 2021 17:23:44 +0200
Subject: Jenkins: BUILD_BY and BUILD_VERSION should be placed in quotes

(cherry picked from commit c66d7648c8602da73bd5acd1d88ea022d3c26cfd)
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index dce892fc..f05d980b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -94,10 +94,10 @@ pipeline {
 
                     sh """
                         ./configure \
-                            --build-by ${params.BUILD_BY} \
+                            --build-by "${params.BUILD_BY}" \
                             --debian-mirror http://deb.debian.org/debian/ \
                             --build-type release \
-                            --version ${params.BUILD_VERSION} ${CUSTOM_PACKAGES}
+                            --version "${params.BUILD_VERSION}" ${CUSTOM_PACKAGES}
                         sudo make iso
                     """
 
-- 
cgit v1.2.3