# HG changeset patch # User Bram Moolenaar # Date 1609167603 -3600 # Node ID 57e79eda1a6259ccf51d789c3f1b184be21a7ba4 # Parent 3601a4bb87b98d2fe02f9e2cd2a1e4f696396ea3 patch 8.2.2237: CI on Mac fails in sed command Commit: https://github.com/vim/vim/commit/ed1e4c9a70aaa7de56bac23e75a846e874a32a56 Author: Bram Moolenaar 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) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- 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 --- 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,