Remove extra if/then/else construct in pip element

This was introduced in [0] but we can include it in the existing elif
series instead.

[0] I2b75afd310f009ae8614f6ca75bb984b56d25c45

Change-Id: Ibe05f367be997efbd8c5ebec77503ebd9cda1c8b
This commit is contained in:
Dr. Jens Harbott 2021-12-18 12:47:14 +01:00
parent f576658a4f
commit 9d60202d1c

View File

@ -250,12 +250,11 @@ EOF
elif [[ $DISTRO_NAME = gentoo ]]; then elif [[ $DISTRO_NAME = gentoo ]]; then
packages="dev-python/pip dev-python/virtualenv" packages="dev-python/pip dev-python/virtualenv"
emerge -U $packages emerge -U $packages
else elif [[ $DIB_RELEASE = bullseye ]]; then
if [[ $DIB_RELEASE = bullseye ]]; then
packages="python3-pip python3-virtualenv" packages="python3-pip python3-virtualenv"
apt-get -y install $packages apt-get -y install $packages
install_python3_pip install_python3_pip
else else
# pre-install packages so dependencies are there. We will # pre-install packages so dependencies are there. We will
# overwrite with latest below. # overwrite with latest below.
packages="python-pip python-virtualenv" packages="python-pip python-virtualenv"
@ -274,5 +273,4 @@ else
if [[ ${DIB_PYTHON_VERSION} == 3 ]]; then if [[ ${DIB_PYTHON_VERSION} == 3 ]]; then
install_python3_pip install_python3_pip
fi fi
fi
fi fi