From ed1e4c9a70aaa7de56bac23e75a846e874a32a56 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 28 Dec 2020 15:46:47 +0100 Subject: patch 8.2.2237: CI on Mac fails in sed command Problem: CI on Mac fails in sed command. Solution: Set LC_ALL to "C". (Ozaki Kiichi, closes #7565) --- .github/workflows/ci.yml | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40a2ce3e5..adbbb1fee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -291,7 +291,7 @@ jobs: - name: Build env: - LANG: C + LC_ALL: C run: | make -j${NPROC} diff --git a/src/version.c b/src/version.c index 401bce967..89e6afcee 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2237, /**/ 2236, /**/ -- cgit v1.2.1