-
Bug
-
Resolution: Done
-
Major
-
7.1.0.CR2
-
None
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
- is cloned by
-
CMTOOL-162 Server migrate tool returs "1" code on --help
- Closed
- is incorporated by
-
JBEAP-14182 [GSS](7.1.z) Upgrade Migration Tool from 1.0.3 to 1.0.4
- Closed