1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00

Исправлена работоспособность настройки анализа веток AUTO в шаге SonarQube

This commit is contained in:
Nikita Fedkin
2025-01-16 19:57:54 +01:00
committed by GitHub
parent c8d5012b77
commit 74c6ceb449

View File

@@ -50,7 +50,7 @@ class SonarScanner implements Serializable {
} else { } else {
sonarCommand += " -Dsonar.branch.name=$env.BRANCH_NAME" sonarCommand += " -Dsonar.branch.name=$env.BRANCH_NAME"
} }
} else (branchAnalysisConfiguration == BranchAnalysisConfiguration.AUTO) { } else if (branchAnalysisConfiguration == BranchAnalysisConfiguration.AUTO) {
// no-op // no-op
} }