Merge branch 'master' of gitorious.psi.ch:pmodules/src

This commit is contained in:
2015-09-29 14:28:15 +02:00
2 changed files with 10 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ module() {
[[ ${#args[@]} == 0 ]] && args+=( 'help' )
[[ ${#args[@]} == 1 ]] && args+=( '--' )
# we have to eval here, otherwise we cannot do something like
# $ module load gcc/5.2.0 openmpi/1.8.8 hdf5/1.8.15
local -i i=1
for (( i=1; i < ${#args[@]}; i++ )); do
eval $( "${modulecmd}" bash "${args[0]}" "${switches[@]}" "${args[i]}" )

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
;;
-- )
:
;;