From debde9c15214cc9f24469760c34a6309ba53e023 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Tue, 13 Sep 2022 19:20:16 +0200 Subject: [PATCH] modulecmd: bugfix: sed command was not defined --- 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 f91a547..1e54cdb 100644 --- a/Pmodules/modulecmd.bash.in +++ b/Pmodules/modulecmd.bash.in @@ -30,7 +30,7 @@ declare -r os_name="$(uname -s)" path="${libexecdir}:/bin:/usr/bin" std::def_cmds "${path}" \ 'awk' 'base64' 'find' 'getopt' 'logger' 'mktemp' \ - 'rm' 'sort' 'yq' + 'rm' 'sed' 'sort' 'yq' if [[ -n ${TCLLIBPATH} ]]; then declare -x TCLLIBPATH="${PMODULES_HOME}/lib/Pmodules:${TCLLIBPATH}"