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

jvergara
14.15.2008 156bd308c1e4701ed55b4e7a136c5ffbe275507a
Fix for issue 3131 (Windows: upgrade using the webinstaller should not hang)

On windows write a carriage return in the output of the process to be sure that the process is not blocked.
1 files modified
6 ■■■■ changed files
opends/resource/bin/start-ds.bat 6 ●●●● patch | view | raw | blame | history
opends/resource/bin/start-ds.bat
@@ -41,7 +41,7 @@
rem Set environment variables
set SCRIPT_UTIL_CMD=set-full-environment-and-test-java
call "%INSTANCE_ROOT%\lib\_script-util.bat"
if NOT %errorlevel% == 0 exit /B %errorlevel%
if NOT %errorlevel% == 0 exit %errorlevel%
echo %SCRIPT%: CLASSPATH=%CLASSPATH% >> %LOG%
@@ -112,11 +112,11 @@
:serverStarted
echo %SCRIPT%: finished >> %LOG%
exit /B 0
exit 0
:serverNotStarted
echo %SCRIPT%: finished >> %LOG%
exit /B 1
exit 1
:end