Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Исправление ошибки публикации по вложенным папкам в /build/out/allure #141

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
3 changes: 1 addition & 2 deletions src/ru/pulsar/jenkins/library/steps/SonarScanner.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ class SonarScanner implements Serializable {
} else {
sonarCommand += " -Dsonar.branch.name=$env.BRANCH_NAME"
}
} else (branchAnalysisConfiguration == BranchAnalysisConfiguration.AUTO) {
} else if (branchAnalysisConfiguration == BranchAnalysisConfiguration.AUTO) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Оооо, вот это очень хорошо, спасибо. Это я бэкпортну

// no-op
sonarCommand += ""
}

String projectVersion = computeProjectVersion()
Expand Down