summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-22 17:23:44 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-22 17:23:44 +0200
commitc66d7648c8602da73bd5acd1d88ea022d3c26cfd (patch)
tree8c0a59a4e7386d4984bc1c1a74c3721b2b5a578a /Jenkinsfile
parent9640a0293cc51347fcab23ad3c50841f2333ebc1 (diff)
downloadvyos-build-c66d7648c8602da73bd5acd1d88ea022d3c26cfd.tar.gz
vyos-build-c66d7648c8602da73bd5acd1d88ea022d3c26cfd.zip
Jenkins: BUILD_BY and BUILD_VERSION should be placed in quotes
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index dfda5723..8a125cca 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -93,10 +93,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
"""