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 | f30e5332e4b398c03e4223397a9fd15455f7f067 (diff) | |
| parent | df651330ab947d6a950c9cf9a976b56b07d6c2be (diff) | |
| download | git-b2a62b6a42f5163cce05f676584471a89ca312d1.tar.gz | |
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
| -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 |
