From 4cd8c699e299f0b2e3eaf7789b44dd5ab501f761 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Wed, 28 Mar 2018 16:16:52 -0700 Subject: [PATCH] travis: use LANG=C instead of unsetting it entirely Thanks to exarkun for the suggestion. The failing buildbots have LANG unset, but I'm pretty sure that defaults to LANG=C, and LANG=C triggers the failures just as well as LANG= did. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7c29474f2..63880548b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,6 @@ matrix: include: - os: linux - os: linux - env: LANG= + env: LANG=C - os: osx fast_finish: true