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

Add try to re-installation of virtualenv-module to install_venv_container.sh.

parent 68e71f17
Branches airflow225
Tags
No related merge requests found
Pipeline #93556 failed
...@@ -56,8 +56,9 @@ else ...@@ -56,8 +56,9 @@ else
# Change into the base-directory of virtual environments... # Change into the base-directory of virtual environments...
cd "${VENV_BASE}" || return cd "${VENV_BASE}" || return
if ! python -m virtualenv --version >/dev/null; then if ! python -m virtualenv --version >/dev/null; then
echo "ERROR: Base directory for virtual environment exists, but virtualenv-module is unavailable." echo "WARNING: Base directory for virtual environment exists, but virtualenv-module is unavailable."
exit echo "Try installation."
pip3 install --target="${VENV_BASE}"/ virtualenv
fi fi
echo "Virtualenv is already installed." echo "Virtualenv is already installed."
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment