From b1a77b5def367de800c63056e9bfee06d03d3c7d Mon Sep 17 00:00:00 2001 From: Maria Semple Date: Wed, 18 Aug 2021 10:45:37 -0700 Subject: [PATCH] add suffix to windows build --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1c14df8155b..bba3451da82 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -349,7 +349,7 @@ try { } } stage('build'){ - def env = "set \"RSTUDIO_VERSION_MAJOR=${rstudioVersionMajor}\" && set \"RSTUDIO_VERSION_MINOR=${rstudioVersionMinor}\" && set \"RSTUDIO_VERSION_PATCH=${rstudioVersionPatch}\"" + def env = "set \"RSTUDIO_VERSION_MAJOR=${rstudioVersionMajor}\" && set \"RSTUDIO_VERSION_MINOR=${rstudioVersionMinor}\" && set \"RSTUDIO_VERSION_PATCH=${rstudioVersionPatch}\" && set \"RSTUDIO_VERSION_SUFFIX=${rstudioVersionSuffix}\"" bat "cd package/win32 && ${env} && set \"PACKAGE_OS=Windows\" && make-package.bat clean && cd ../.." } stage('tests'){