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.
| | |
| | | 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% |
| | | |
| | |
| | | |
| | | :serverStarted |
| | | echo %SCRIPT%: finished >> %LOG% |
| | | exit /B 0 |
| | | exit 0 |
| | | |
| | | :serverNotStarted |
| | | echo %SCRIPT%: finished >> %LOG% |
| | | exit /B 1 |
| | | exit 1 |
| | | |
| | | |
| | | :end |