modulecmd: bugfix: use of wrong shell in sub-cmd unload

This commit is contained in:
2024-08-23 13:08:19 +02:00
parent 48d5ded1f6
commit 35081f59ce
+1 -1
View File
@@ -1011,7 +1011,7 @@ subcommand_unload() {
is_modulefile modulecmd "${lmfile}" || die_not_a_modulefile "${arg}"
local output=''
output=$("${modulecmd}" "${Shell}" 'unload' "${arg}")
output=$("${modulecmd}" 'bash' 'unload' "${arg}")
if [[ -n "${output}" ]]; then
eval "$(echo "${output}"|${sed} -e 's/;unalias [^;]*//g')"
fi