-
Bug
-
Resolution: Done
-
Major
-
1.0.3.Final
-
None
-
None
-
User Experience
It's common practice for tools to return "0" exit code on --help.
[pkremens@localhost bin] $ ls --help &> /dev/null ; echo $? 0 [pkremens@localhost bin] $ ./standalone.sh --help &> /dev/null ; echo $? 0 [pkremens@localhost bin] $ ./jboss-cli.sh --help &> /dev/null ; echo $? 0
This is not true for server migration tool though.
actual
[pkremens@localhost bin] $ ./jboss-server-migration.sh --help &> /dev/null ; echo $? 1
expected
[pkremens@localhost bin] $ ./jboss-server-migration.sh --help &> /dev/null ; echo $? 0
- clones
-
JBEAP-13439 (7.1.z) CMTOOL-162 - Server migrate tool returns "1" code on --help
- Closed