[AIRFLOW-5747] `real_prefix misses the virtual env created with pyenv and venv (#6417)

This commit is contained in:
mucio 2019-10-24 20:05:15 +02:00 коммит произвёл Jarek Potiuk
Родитель 63344f2e0d
Коммит d5dc1e2632
1 изменённых файлов: 1 добавлений и 1 удалений

2
breeze
Просмотреть файл

@ -782,7 +782,7 @@ fi
if [[ ${INITIALIZE_LOCAL_VIRTUALENV} == "true" ]]; then
# Check if we are in virtualenv
set +e
echo -e "import sys\nif not hasattr(sys,'real_prefix'):\n sys.exit(1)" | "python${PYTHON_VERSION}"
echo -e "import sys\nif not hasattr(sys,'base_prefix'):\n sys.exit(1)" | "python${PYTHON_VERSION}"
RES=$?
set -e
if [[ ${RES} != "0" ]]; then