Commit 308436efed190356bb2194e0fdca1a74c9789b03

Authored by Jarrett Jordaan
1 parent aae61d9e

Update to install messages.

Committed by: Jarrett Jordaan

Reviewed by: Megan Watson
Showing 1 changed file with 4 additions and 4 deletions
dmsctl.bat
... ... @@ -2,7 +2,6 @@
2 2  
3 3 rem KnowledgeTree Control Script
4 4  
5   -
6 5 rem ============= SET ENVIRONMENT VARIABLES ==============
7 6 set INSTALL_PATH=%~dp0
8 7 cd ..
... ... @@ -87,7 +86,7 @@ goto end
87 86  
88 87 :path
89 88 echo ZEND_PATH == %ZEND_PATH%
90   -echo KTDMS_PATH == %KTDMS_PATH%
  89 +echo KTDMS_PATH == %KTDMS_PATH%
91 90 echo INSTALL_PATH == %INSTALL_PATH%
92 91 echo JAVA_BIN == %JAVA_BIN%
93 92 echo SOFFICE_PATH == %SOFFICE_PATH%
... ... @@ -97,10 +96,11 @@ goto end
97 96 :install
98 97 echo Installing services
99 98 IF EXIST "%INSTALL_PATH%\var\bin\officeinstall.bat" call "%INSTALL_PATH%\var\bin\officeinstall.bat"
100   -echo The Open Office automatic service was successfully installed
  99 +IF EXIST "%INSTALL_PATH%\var\bin\officeinstall.bat" echo The Open Office automatic service was successfully installed.
101 100 IF EXIST "%INSTALL_PATH%\var\bin\schedulerinstall.bat" call "%INSTALL_PATH%\var\bin\schedulerinstall.bat"
102   -echo The Scheduler automatic service was successfully installed
  101 +IF EXIST "%INSTALL_PATH%\var\bin\schedulerinstall.bat" echo The Scheduler automatic service was successfully installed.
103 102 IF EXIST "%INSTALL_PATH%\var\bin\luceneinstall.bat" call "%INSTALL_PATH%\var\bin\luceneinstall.bat"
  103 +IF EXIST "%INSTALL_PATH%\var\bin\luceneinstall.bat" echo The Lucene automatic service was successfully installed.
104 104 goto end
105 105  
106 106 :end
... ...