Skip to content

Commit

Permalink
Merge branch 'ps/ci-fix-detection-of-ubuntu-20' into maint-2.45
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gitster committed Jun 28, 2024
2 parents f30e533 + df65133 commit b2a62b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ ubuntu-*)
# Python 2 is end of life, and Ubuntu 23.04 and newer don't actually
# have it anymore. We thus only test with Python 2 on older LTS
# releases.
if "$distro" = "ubuntu-20.04"
if test "$distro" = "ubuntu-20.04"
then
PYTHON_PACKAGE=python2
else
Expand Down

0 comments on commit b2a62b6

Please sign in to comment.