Skip to content

Commit ea26e47

Browse files
authored
Merge pull request #4433 from locriandev/fix-build-sync
Fix build-sync
2 parents b8238d4 + 5dd689d commit ea26e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/build/build-sync/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ node() {
117117
stage("Initialize") {
118118
// Forbid for Konflux releases
119119
BUILD_VERSION_MINOR = params.BUILD_VERSION.tokenize('.')[1].toInteger() // Store the "Y" in X.Y
120-
if BUILD_VERSION_MINOR >= 20:
120+
if (BUILD_VERSION_MINOR >= 20):
121121
error("Please run the build-sync-konflux job instead")
122122

123123
echo("Initializing ${params.BUILD_VERSION} sync: #${currentBuild.number}")

0 commit comments

Comments
 (0)