mirror of
https://github.com/Pmodules/Pmodules.git
synced 2026-06-30 19:29:38 +02:00
modulecmd: eval output of modulecmd.bin only if not empty
This commit is contained in:
@@ -959,12 +959,15 @@ subcommand_unload() {
|
||||
if [[ "${lmfile}" == '_zzzz_' ]]; then
|
||||
continue
|
||||
fi
|
||||
# yes, module has been loaded
|
||||
local interp
|
||||
is_modulefile modulecmd "${lmfile}" || die_not_a_modulefile "${lmfile}"
|
||||
is_modulefile modulecmd "${lmfile}" || die_not_a_modulefile "${arg}"
|
||||
|
||||
local output=''
|
||||
output=$("${modulecmd}" "${Shell}" 'unload' "${arg}")
|
||||
eval "$(echo "${output}"|${sed} -e 's/;unalias [^;]*//g')"
|
||||
if [[ -n "${output}" ]]; then
|
||||
eval "$(echo "${output}"|${sed} -e 's/;unalias [^;]*//g')"
|
||||
fi
|
||||
case ${Shell} in
|
||||
sh | bash | zsh )
|
||||
echo "${output}"
|
||||
|
||||
Reference in New Issue
Block a user