From f1289fc19af1640d5926eac3158dab0d495ae12f Mon Sep 17 00:00:00 2001 From: vsoch Date: Fri, 8 Sep 2023 01:34:34 -0600 Subject: [PATCH] remove extra erroneous } Signed-off-by: vsoch --- shpc/main/wrappers/templates/bases/shell-script-base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shpc/main/wrappers/templates/bases/shell-script-base.sh b/shpc/main/wrappers/templates/bases/shell-script-base.sh index 52dd7c64a..789b8d0c2 100755 --- a/shpc/main/wrappers/templates/bases/shell-script-base.sh +++ b/shpc/main/wrappers/templates/bases/shell-script-base.sh @@ -1,7 +1,7 @@ #!{{ settings.wrapper_shell }} {% if '/csh' in settings.wrapper_shell %}set {% endif %}script=`realpath $0` -{% if '/csh' in settings.wrapper_shell %}set {% endif %}}wrapper_bin={% if settings.wrapper_base %}"{{ wrapper_dir }}"{% else %}`dirname $script`{% endif %} +{% if '/csh' in settings.wrapper_shell %}set {% endif %}wrapper_bin={% if settings.wrapper_base %}"{{ wrapper_dir }}"{% else %}`dirname $script`{% endif %} {% if '/csh' in settings.wrapper_shell %}set {% endif %}moduleDir=`dirname $wrapper_bin` {% block content %}{% endblock %}