Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
fix: wrong variable assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Jan 27, 2021
1 parent df8b42d commit 8e1be8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8e1be8c

Please sign in to comment.