diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-06-17 15:55:53 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-06-17 15:55:53 -0700 |
| commit | 4551858c189ba2d32bd3654fe843c3d54a77b1c8 (patch) | |
| tree | 6d5cb28b4f277db24909f5cb69b6f03e20209abd | |
| parent | 7e2d0348d8a0009c8c7e0e347dd0404a239188cb (diff) | |
| parent | df651330ab947d6a950c9cf9a976b56b07d6c2be (diff) | |
| download | git-4551858c189ba2d32bd3654fe843c3d54a77b1c8.tar.gz | |
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
| -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 |
