aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJulien HENRY <henryju@yahoo.fr>2016-07-05 14:41:20 +0200
committerJulien HENRY <henryju@yahoo.fr>2016-07-05 14:41:20 +0200
commitcc72c54ef3fd4b63751e65862fad250795accc04 (patch)
tree6cafe912fca786a4c459e902772df3272b1739a4 /src
parent062cc9de4ac3d480fb5f5544144572a5adee001c (diff)
downloadsonar-scanner-cli-cc72c54ef3fd4b63751e65862fad250795accc04.tar.gz
sonar-scanner-cli-cc72c54ef3fd4b63751e65862fad250795accc04.zip
SQSCANNER-25 Fix regression with SONAR_RUNNER_OPTS
Diffstat (limited to 'src')
-rw-r--r--src/main/assembly/bin/sonar-runner.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/assembly/bin/sonar-runner.bat b/src/main/assembly/bin/sonar-runner.bat
index b004a10..7ff47ba 100644
--- a/src/main/assembly/bin/sonar-runner.bat
+++ b/src/main/assembly/bin/sonar-runner.bat
@@ -74,7 +74,7 @@ if "%SONAR_RUNNER_OPTS%" == "" (
goto run
) else (
echo WARN: SONAR_RUNNER_OPTS is deprecated. Please use SONAR_SCANNER_OPTS instead.
- if not "%SONAR_SCANNER_OPTS%" == "" (set SONAR_SCANNER_OPTS=%SONAR_RUNNER_OPTS%)
+ if "%SONAR_SCANNER_OPTS%" == "" (set SONAR_SCANNER_OPTS=%SONAR_RUNNER_OPTS%)
)
@REM ==== START RUN ====