Merge "Dont install python-virtualenv for py3k in deb"

This commit is contained in:
Zuul 2017-10-24 06:33:45 +00:00 committed by Gerrit Code Review
commit 8f025691ba
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ else
# time and you had to use "python -m venv". Since then virtualenv
# has gained 3.4 support so the pip install below will work
if [[ ${DIB_PYTHON_VERSION} == 3 ]]; then
packages+=" python3-virtualenv"
packages=$(echo "$packages" | sed s/python-virtualenv/python3-virtualenv/)
fi
apt-get -y install $packages