aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-06-17 15:55:53 -0700
committerJunio C Hamano <gitster@pobox.com>2024-06-17 15:55:53 -0700
commit4551858c189ba2d32bd3654fe843c3d54a77b1c8 (patch)
tree6d5cb28b4f277db24909f5cb69b6f03e20209abd
parent7e2d0348d8a0009c8c7e0e347dd0404a239188cb (diff)
parentdf651330ab947d6a950c9cf9a976b56b07d6c2be (diff)
downloadgit-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-xci/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index 1f4059b1b8..814578ffc6 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -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