Skip to content

Commit ed1e4c9

Browse files
committed
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)
1 parent 7466706 commit ed1e4c9

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ jobs:
291291
292292
- name: Build
293293
env:
294-
LANG: C
294+
LC_ALL: C
295295
run: |
296296
make -j${NPROC}
297297

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2237,
753755
/**/
754756
2236,
755757
/**/

0 commit comments

Comments
 (0)