Git fork

Merge branch 'ps/ci-fix-detection-of-ubuntu-20' into maint-2.45

Fix for an embarrassing typo that prevented Python2 tests from running
anywhere.

* ps/ci-fix-detection-of-ubuntu-20:
ci: fix check for Ubuntu 20.04

+1 -1
+1 -1
ci/lib.sh
··· 328 328 # Python 2 is end of life, and Ubuntu 23.04 and newer don't actually 329 329 # have it anymore. We thus only test with Python 2 on older LTS 330 330 # releases. 331 - if "$distro" = "ubuntu-20.04" 331 + if test "$distro" = "ubuntu-20.04" 332 332 then 333 333 PYTHON_PACKAGE=python2 334 334 else