Skip to content

Commit b2a62b6

Browse files
committed
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
2 parents f30e533 + df65133 commit b2a62b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ ubuntu-*)
328328
# Python 2 is end of life, and Ubuntu 23.04 and newer don't actually
329329
# have it anymore. We thus only test with Python 2 on older LTS
330330
# releases.
331-
if "$distro" = "ubuntu-20.04"
331+
if test "$distro" = "ubuntu-20.04"
332332
then
333333
PYTHON_PACKAGE=python2
334334
else

0 commit comments

Comments
 (0)