diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-22 17:23:44 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-22 17:23:53 +0200 |
commit | 75b37b28b2e9abf1fc5b97f46dd60130dd63ed91 (patch) | |
tree | 4149527220e96bd1cdd656677d058829b215e5b3 | |
parent | 35f7e66c9ae63b5541d31a3c767ab62e12de6100 (diff) | |
download | vyos-build-75b37b28b2e9abf1fc5b97f46dd60130dd63ed91.tar.gz vyos-build-75b37b28b2e9abf1fc5b97f46dd60130dd63ed91.zip |
Jenkins: BUILD_BY and BUILD_VERSION should be placed in quotes
(cherry picked from commit c66d7648c8602da73bd5acd1d88ea022d3c26cfd)
-rw-r--r-- | Jenkinsfile | 4 |
1 files 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 """ |