summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-28 15:46:47 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-28 15:46:47 +0100
commited1e4c9a70aaa7de56bac23e75a846e874a32a56 (patch)
tree0f4ab96855507b977bbaba7c9c8af79568605a48
parent746670604a60cb0356b56c112ffb6d297c679099 (diff)
downloadvim-git-ed1e4c9a70aaa7de56bac23e75a846e874a32a56.tar.gz
patch 8.2.2237: CI on Mac fails in sed commandv8.2.2237
Problem: CI on Mac fails in sed command. Solution: Set LC_ALL to "C". (Ozaki Kiichi, closes #7565)
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
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
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2237,
+/**/
2236,
/**/
2235,