From 8e1be8c4dc3317cfdf598e9a2304db0fe60f02a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Wed, 27 Jan 2021 12:37:59 +0100 Subject: [PATCH] fix: wrong variable assignment --- .ci/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index 356a5c573f..be54d71f2e 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -320,9 +320,9 @@ def generateFunctionalTestStep(Map args = [:]){ // On the other hand, the developers can use the TAGS environment variable locally. // Finally, we positively know that tags are not empty, so we can use AND operator. if ("${NIGHTLY_SCENARIOS}" == "true") { - tags + " && ${NIGHTLY_TAG}" + tags += " && ${NIGHTLY_TAG}" } else { - tags + " && ~${NIGHTLY_TAG}" + tags += " && ~${NIGHTLY_TAG}" } return {