Skip to content
Snippets Groups Projects
Commit 4f86c3e0 authored by Michael Langguth's avatar Michael Langguth
Browse files

Correct variable declaration in install_venv_container.sh.

parent aff62c5a
No related branches found
No related tags found
No related merge requests found
Pipeline #81741 failed
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
# **************** Description **************** # **************** Description ****************
# set some basic variables # set some basic variables
local BASE_DIR=`pwd` BASE_DIR=`pwd`
local VENV_BASE=$1 VENV_BASE=$1
local VENV_NAME="$(basename "${VENV_BASE}")" VENV_NAME="$(basename "${VENV_BASE}")"
local VENV_DIR=${VENV_BASE}/${VENV_NAME} VENV_DIR=${VENV_BASE}/${VENV_NAME}
# sanity checks # sanity checks
# check if we are running in a container # check if we are running in a container
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment