wrapper 

Commit MetaInfo

Revision160 (tree)
Time2011-11-08 10:32:14
Authormortenson

Log Message

Fix a problem in the Windows AppCommand.bat.in command based batch file where the 'status' command was incorrectly being reported as 'query' in the usage output. The 'status' command had always worked correctly if used.

Change Summary

Diff

--- trunk/wrapper/doc/revisions.txt (revision 159)
+++ trunk/wrapper/doc/revisions.txt (revision 160)
@@ -1,6 +1,12 @@
11 Java Service Wrapper Revision History.
22 --------------------------------------
33
4+3.5.14
5+ * Fix a problem in the Windows AppCommand.bat.in command based batch file
6+ where the 'status' command was incorrectly being reported as 'query' in
7+ the usage output. The 'status' command had always worked correctly if
8+ used.
9+
410 3.5.13
511 * Fix a typo in the script where the environment variable 'TR_BIN' should
612 actually be 'TREXE'. This was causing the "install" command on UNIX
--- trunk/wrapper/src/bin/AppCommand.bat.in (revision 159)
+++ trunk/wrapper/src/bin/AppCommand.bat.in (revision 160)
@@ -75,7 +75,7 @@
7575 set _COMMAND=%_FIXED_COMMAND%
7676 ) else (
7777 set _COMMAND=%1
78- shift
78+ shift
7979 )
8080
8181 rem Collect all parameters
@@ -134,9 +134,9 @@
134134 echo.
135135 )
136136 if [%_PASS_THROUGH%]==[] (
137- echo Usage: %0 [ console : start : pause : resume : stop : restart : install : remove : query ]
137+ echo Usage: %0 [ console : start : pause : resume : stop : restart : install : remove : status ]
138138 ) else (
139- echo Usage: %0 [ console {JavaAppArgs} : start : pause : resume : stop : restart : install {JavaAppArgs} : remove : query ]
139+ echo Usage: %0 [ console {JavaAppArgs} : start : pause : resume : stop : restart : install {JavaAppArgs} : remove : status ]
140140 )
141141 pause
142142 goto :eof
@@ -144,7 +144,7 @@
144144
145145 :start
146146 "%_WRAPPER_EXE%" -t "%_WRAPPER_CONF%"
147- goto :eof
147+ goto :eof
148148 :stop
149149 "%_WRAPPER_EXE%" -p "%_WRAPPER_CONF%"
150150 goto :eof
旧リポジトリブラウザで表示