Commit MetaInfo
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
| | @@ -1,6 +1,12 @@ | | 1 | 1 | Java Service Wrapper Revision History. | | 2 | 2 | -------------------------------------- | | 3 | 3 | | | 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 | + | | 4 | 10 | 3.5.13 | | 5 | 11 | * Fix a typo in the script where the environment variable 'TR_BIN' should | | 6 | 12 | actually be 'TREXE'. This was causing the "install" command on UNIX |
| | @@ -75,7 +75,7 @@ | | 75 | 75 | set _COMMAND=%_FIXED_COMMAND% | | 76 | 76 | ) else ( | | 77 | 77 | set _COMMAND=%1 | | 78 | | - shift | | 78 | + shift | | 79 | 79 | ) | | 80 | 80 | | | 81 | 81 | rem Collect all parameters |
| | @@ -134,9 +134,9 @@ | | 134 | 134 | echo. | | 135 | 135 | ) | | 136 | 136 | 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 ] | | 138 | 138 | ) 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 ] | | 140 | 140 | ) | | 141 | 141 | pause | | 142 | 142 | goto :eof |
| | @@ -144,7 +144,7 @@ | | 144 | 144 | | | 145 | 145 | :start | | 146 | 146 | "%_WRAPPER_EXE%" -t "%_WRAPPER_CONF%" | | 147 | | - goto :eof | | 147 | + goto :eof | | 148 | 148 | :stop | | 149 | 149 | "%_WRAPPER_EXE%" -p "%_WRAPPER_CONF%" | | 150 | 150 | goto :eof |
旧リポジトリブラウザで表示
|