Skip to content
6 changes: 3 additions & 3 deletions scripts/src/main/resources/scripts/command/sonar
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ function doSonar() {
then
if [ "${1}" = "start" ]
then
#"${SONARQUBE_HOME}/bin/windows-x86-64/SonarService.bat"
"${SONARQUBE_HOME}/bin/windows-x86-64/StartSonar.bat"
#"${SONAR_HOME}/bin/windows-x86-64/SonarService.bat"
"${SONAR_HOME}/bin/windows-x86-64/StartSonar.bat"
elif [ "${1}" = "stop" ]
then
"${SONARQUBE_HOME}/bin/windows-x86-64/SonarService.bat" stop
"${SONAR_HOME}/bin/windows-x86-64/SonarService.bat" stop
else
doFail "Unknown sonar command: ${1}"
fi
Expand Down