This script may result in unexpected behavior on distributions
other than Ubuntu with a matching release.
DISTRIB_ID must be tested to avoid such problems.
Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com>
Change-Id: I2ba02b613a4aaadfeb09bd66ddfde8f36a9510b4
if [[ -f /etc/lsb-release ]]; then
# shellcheck disable=SC1091
source /etc/lsb-release
- if [[ $DISTRIB_RELEASE == "16.04" ]]; then
+ if [[ $DISTRIB_RELEASE == "16.04" && $DISTRIB_ID == "Ubuntu" ]]; then
echo "WARNING: Python projects should move to Ubuntu 18.04 to continue receiving support"
echo "zipp==1.1.0" >> "$requirements_file"
fi