]> source.dussan.org Git - sonarqube.git/commitdiff
Reset %errorlevel% after checks in batch scripts
authorFelipe Zorzo <felipe.b.zorzo@gmail.com>
Sat, 3 Sep 2022 00:05:21 +0000 (21:05 -0300)
committersonartech <sonartech@sonarsource.com>
Wed, 28 Sep 2022 20:04:08 +0000 (20:04 +0000)
sonar-application/src/main/assembly/bin/windows-x86-64/StartSonar.bat
sonar-application/src/main/assembly/bin/windows-x86-64/lib/find_java.bat

index e154489c0bcbf089a8c1b5cef0c65c3bafac8125..9a6bedd02efb18875f6e59a1a5b4abe591d7d700 100755 (executable)
@@ -63,7 +63,7 @@ goto:eof
         echo ERROR: Another instance of the SonarQube application is already running with PID %SQ_PROCESS%\r
         exit /b 1\r
     )\r
-    goto:eof\r
+    exit /b 0\r
 \r
 endlocal\r
 \r
index 12ac5fcb7c632e57ea10ce220151865768fc25b9..82ca851821f399e175360740ff1ff88d82fba16a 100644 (file)
@@ -26,7 +26,7 @@ rem Returns an error code if Java executable is not found in the PATH and the en
         echo ERROR: java.exe not found. Please make sure that the environmental variable SONAR_JAVA_PATH points to the Java executable.
         exit /b 1
     )
-    goto:eof
+    exit /b 0
 
 :exit
 exit /b
\ No newline at end of file