From dc8dcae33e0507fdebe313a59c9d5032b1174fe6 Mon Sep 17 00:00:00 2001 From: Emma Hogan Date: Wed, 18 Dec 2024 14:50:39 +0000 Subject: [PATCH] #3708: Remove unnecessary varoable in dkrz-env file --- esmvaltool/utils/recipe_test_workflow/site/dkrz-env | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esmvaltool/utils/recipe_test_workflow/site/dkrz-env b/esmvaltool/utils/recipe_test_workflow/site/dkrz-env index 70606801b9..20910c7810 100755 --- a/esmvaltool/utils/recipe_test_workflow/site/dkrz-env +++ b/esmvaltool/utils/recipe_test_workflow/site/dkrz-env @@ -25,7 +25,6 @@ export PYTHONNOUSERSITE=True WORKFLOW_RUN_BIN_DIR="${CYLC_WORKFLOW_RUN_DIR}/bin" WORKFLOW_SHARE_BIN_DIR="${CYLC_WORKFLOW_SHARE_DIR}/cycle/bin" ROSE_APP_BIN_DIR="${CYLC_WORKFLOW_RUN_DIR}/app/${ROSE_TASK_APP:-$CYLC_TASK_NAME}/bin" -CONTAINER=${CONTAINER_PATH} # Bind paths for container. Where symbolic links are used in file paths (e.g. # under /badc/cmip6 and /home/users) need to bind the root dirs of both the @@ -55,6 +54,6 @@ if [[ -z ${QUIET_MODE:-} ]]; then echo "[INFO] Using the ${ENV_NAME} container" fi -singularity_command="singularity-env singularity -q exec ${CONTAINER} $@" +singularity_command="singularity-env singularity -q exec ${CONTAINER_PATH} $@" command="/usr/bin/time -v -o ${CYLC_TASK_LOG_ROOT}.time ${singularity_command}" exec ${command}