From 07bfb15adf81725194d42a6cb79fb13231ab45cb Mon Sep 17 00:00:00 2001 From: Jay Caines-Gooby Date: Mon, 29 Jun 2020 16:43:51 +0100 Subject: [PATCH] Silence the locale check --- ttfb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttfb b/ttfb index 9c35460..06f5632 100755 --- a/ttfb +++ b/ttfb @@ -67,7 +67,7 @@ done # Ensure curl uses period separators for floating point values, which # bc requires to do calculations (i.e. it can't use locale separators like ,) -if (locale -a | egrep ^C.UTF-8$); then +if (locale -a | egrep ^C.UTF-8$ > /dev/null); then export LC_ALL=C.UTF-8 else export LC_ALL=C