From 1ef3f0f00fce64c86472aabfd9505d33154f1c45 Mon Sep 17 00:00:00 2001 From: Antonio Sanhueza Date: Mon, 4 Nov 2019 18:41:28 -0300 Subject: [PATCH] Fix to use same locale C.UTF-8 In other locales (ex. es_CL.UTF-8), the voltages aren't printed because decimal point is represent with ',' and not '.' as expected. This correct the problem. --- Software/zero2go/zero2go.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Software/zero2go/zero2go.sh b/Software/zero2go/zero2go.sh index aff95fc..38ee89c 100644 --- a/Software/zero2go/zero2go.sh +++ b/Software/zero2go/zero2go.sh @@ -2,6 +2,9 @@ # file: zero2go.sh # +#use single locale +LC_ALL=C.UTF-8 + # include utilities script in same directory my_dir="`dirname \"$0\"`" my_dir="`( cd \"$my_dir\" && pwd )`"