From 4f86c3e050dfb9ec05d66135f8bb951874fe21ef Mon Sep 17 00:00:00 2001 From: Michael <m.langguth@fz-juelich.de> Date: Thu, 28 Oct 2021 15:20:32 +0200 Subject: [PATCH] Correct variable declaration in install_venv_container.sh. --- .../env_setup/install_venv_container.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/video_prediction_tools/env_setup/install_venv_container.sh b/video_prediction_tools/env_setup/install_venv_container.sh index 48e83575..5ca6efe9 100755 --- a/video_prediction_tools/env_setup/install_venv_container.sh +++ b/video_prediction_tools/env_setup/install_venv_container.sh @@ -8,10 +8,10 @@ # **************** Description **************** # set some basic variables -local BASE_DIR=`pwd` -local VENV_BASE=$1 -local VENV_NAME="$(basename "${VENV_BASE}")" -local VENV_DIR=${VENV_BASE}/${VENV_NAME} +BASE_DIR=`pwd` +VENV_BASE=$1 +VENV_NAME="$(basename "${VENV_BASE}")" +VENV_DIR=${VENV_BASE}/${VENV_NAME} # sanity checks # check if we are running in a container -- GitLab