Merge branch '337-modulecmd-use-of-wrong-shell-in-sub-cmd-unload' into 'master'

Resolve "modulecmd: use of wrong shell in sub-cmd unload"

Closes #337

See merge request Pmodules/src!316

(cherry picked from commit c99e10d180)

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

Co-authored-by: gsell <achim.gsell@psi.ch>
This commit is contained in:
2024-08-23 13:36:31 +02:00
parent bc011ac4fa
commit bb4b93e16c
+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