mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
17.40.2010 35ee1b93a3f78be7c928f0871e812011af8fa60c
Fixed typo in param passing in Windows bat files
4 files modified
10 ■■■■ changed files
opends/resource/bin/_client-script.bat 2 ●●● patch | view | raw | blame | history
opends/resource/bin/_mixed-script.bat 4 ●●●● patch | view | raw | blame | history
opends/resource/bin/_server-script.bat 2 ●●● patch | view | raw | blame | history
opends/resource/bin/control-panel.bat 2 ●●● patch | view | raw | blame | history
opends/resource/bin/_client-script.bat
@@ -52,7 +52,7 @@
:launchCommand
set SCRIPT_UTIL_CMD=set-full-environment
call "%INSTALL_ROOT%\lib\_script-util.bat" $*
call "%INSTALL_ROOT%\lib\_script-util.bat" %*
if NOT %errorlevel% == 0 exit /B %errorlevel%
"%OPENDS_JAVA_BIN%" %OPENDS_JAVA_ARGS% %SCRIPT_NAME_ARG% %OPENDS_INVOKE_CLASS% %*
opends/resource/bin/_mixed-script.bat
@@ -53,7 +53,7 @@
set ORIGINAL_JAVA_BIN=%OPENDS_JAVA_BIN%
set SCRIPT_UTIL_CMD=set-full-environment
call "%INSTALL_ROOT%\lib\_script-util.bat" $*
call "%INSTALL_ROOT%\lib\_script-util.bat" %*
if NOT %errorlevel% == 0 exit /B %errorlevel%
set SCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=%OLD_SCRIPT_NAME%"
@@ -86,7 +86,7 @@
set OPENDS_JAVA_BIN=%ORIGINAL_JAVA_BIN%
set SCRIPT_UTIL_CMD=set-full-environment
call "%INSTALL_ROOT%\lib\_script-util.bat" $*
call "%INSTALL_ROOT%\lib\_script-util.bat" %*
if NOT %errorlevel% == 0 exit /B %errorlevel%
set SCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=%OLD_SCRIPT_NAME%"
opends/resource/bin/_server-script.bat
@@ -52,7 +52,7 @@
:launchCommand
set SCRIPT_UTIL_CMD=set-full-environment
call "%INSTALL_ROOT%\lib\_script-util.bat" $*
call "%INSTALL_ROOT%\lib\_script-util.bat" %*
if NOT %errorlevel% == 0 exit /B %errorlevel%
"%OPENDS_JAVA_BIN%" %OPENDS_JAVA_ARGS% %SCRIPT_NAME_ARG% %OPENDS_INVOKE_CLASS% --configClass org.opends.server.extensions.ConfigFileHandler --configFile "%INSTANCE_ROOT%\config\config.ldif" %*
opends/resource/bin/control-panel.bat
@@ -44,7 +44,7 @@
rem Set environment variables
set SCRIPT_UTIL_CMD=set-full-environment
call "%INSTALL_ROOT%\lib\_script-util.bat" $*
call "%INSTALL_ROOT%\lib\_script-util.bat" %*
if NOT %errorlevel% == 0 exit /B %errorlevel%
if "%~1" == "" goto callLaunch