aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-06-28 15:53:17 -0700
committerJunio C Hamano <gitster@pobox.com>2024-06-28 15:53:17 -0700
commitb2a62b6a42f5163cce05f676584471a89ca312d1 (patch)
tree3f8eadbcf5e5800cef8b480320635e8ff0c965ed
parentf30e5332e4b398c03e4223397a9fd15455f7f067 (diff)
parentdf651330ab947d6a950c9cf9a976b56b07d6c2be (diff)
downloadgit-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-xci/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index 3856c0066b..ff66ad356b 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