changeset 23388:57e79eda1a62 v8.2.2237

patch 8.2.2237: CI on Mac fails in sed command Commit: https://github.com/vim/vim/commit/ed1e4c9a70aaa7de56bac23e75a846e874a32a56 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 28 15:46:47 2020 +0100 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 https://github.com/vim/vim/issues/7565)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Dec 2020 16:00:03 +0100
parents 3601a4bb87b9
children f67d856ae24e
files .github/workflows/ci.yml src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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}
 
--- 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,