diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-06-28 15:53:17 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-06-28 15:53:17 -0700 |
| commit | b2a62b6a42f5163cce05f676584471a89ca312d1 (patch) | |
| tree | 3f8eadbcf5e5800cef8b480320635e8ff0c965ed | |
| parent | Merge branch 'jk/cap-exclude-file-size' into maint-2.45 (diff) | |
| parent | ci: fix check for Ubuntu 20.04 (diff) | |
| download | git-b2a62b6a42f5163cce05f676584471a89ca312d1.tar.gz git-b2a62b6a42f5163cce05f676584471a89ca312d1.zip | |
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
Diffstat (limited to '')
| -rwxr-xr-x | ci/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
