From 6280d76767d28ccab4e992ef458d0b562bc22fb4 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 27 Jul 2016 18:46:55 +0200 Subject: [PATCH] Pmodules/modulecmd.bash.in - bugfix in pbuild::export_env() --- Pmodules/modulecmd.bash.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pmodules/modulecmd.bash.in b/Pmodules/modulecmd.bash.in index d3f052a..7d1da8c 100755 --- a/Pmodules/modulecmd.bash.in +++ b/Pmodules/modulecmd.bash.in @@ -46,7 +46,7 @@ pbuild::export_env() { shift case ${shell} in bash ) - local -r fmt="export %s=\"%s\"" + local -r fmt="export %s=\"%s\"; " ;; tcsh ) local -r fmt="setenv %s \"%s\""