1
0
mirror of https://github.com/git/git synced 2024-06-30 22:54:27 +00:00

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

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
This commit is contained in:
Junio C Hamano 2024-06-17 15:55:53 -07:00
commit 4551858c18

View File

@ -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