chore: fix missed changes for docker update

This commit is contained in:
Arthur Meyre
2021-11-30 18:25:08 +01:00
parent 3620c6355b
commit faa6dd4403
2 changed files with 3 additions and 17 deletions

View File

@@ -6,10 +6,10 @@
set +e
# shellcheck disable=SC1091
if ! source /src/.docker_venv/bin/activate; then
python3 -m venv /src/.docker_venv
if ! source /root/dev_venv/bin/activate; then
python3 -m venv /root/dev_venv
# shellcheck disable=SC1091
source /src/.docker_venv/bin/activate
source /root/dev_venv/bin/activate
cd /src/ && make setup_env
fi