Skip to content

Commit 172187f

Browse files
committed
adding quotes around args
1 parent b973ccc commit 172187f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,12 @@ pipeline {
163163
${sonarscanner_exe} \
164164
-Dsonar.sourceEncoding=UTF-8 \
165165
-Dsonar.host.url=${sonar_url} \
166-
-Dsonar.login=${sonar_login} \
166+
-Dsonar.login="${sonar_login}" \
167167
-Dsonar.organization=${sonar_org} \
168168
-Dsonar.projectKey=${sonar_project_key} \
169169
-Dsonar.projectVersion=${version_prefix} \
170170
-Dsonar.branch.name=${BRANCH_NAME} \
171-
-Dsonar.javascript.lcov.reportPaths=${lcov_report_paths}
171+
-Dsonar.javascript.lcov.reportPaths="${lcov_report_paths}"
172172
"""
173173
// withSonarQubeEnv('SonarCloud') {
174174
// }

0 commit comments

Comments
 (0)