Pmodules/modulecmd.bash.in

- handle options --help, --version in subcomand_help()
This commit is contained in:
2015-09-29 13:47:42 +02:00
parent bd9ddc5a7e
commit 031c6dd574

View File

@@ -1485,12 +1485,19 @@ subcommand_search() {
#
subcommand_help() {
local opts=''
opts=$(pmodules::get_options -- '' "$@") || usage
opts=$(pmodules::get_options -o HV\? -l version -l help -- "$@") || usage
eval set -- "${opts}"
local arg=''
while (( $# > 0 )); do
case $1 in
-[hH] | -\? | --help )
usage
;;
-V | --version )
print_version
std::die 1
;;
-- )
:
;;