From d143d9a65ca07d4ad7e93dff4a4603d18ea06e84 Mon Sep 17 00:00:00 2001 From: Hanra <37299738+HenraL@users.noreply.github.com> Date: Wed, 11 Jun 2025 10:55:35 +0200 Subject: [PATCH] Update pm3_tests.sh Added LANG=C to the script to enforce the English language so that it does not break when the system language is not English. Signed-off-by: Hanra <37299738+HenraL@users.noreply.github.com> --- tools/pm3_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/pm3_tests.sh b/tools/pm3_tests.sh index 96a6376f7..65a2f9985 100755 --- a/tools/pm3_tests.sh +++ b/tools/pm3_tests.sh @@ -1,5 +1,8 @@ #!/usr/bin/env bash +# This is used to make sure that the language for the functions is english instead of the system default language. +LANG=C + PM3PATH="$(dirname "$0")/.." cd "$PM3PATH" || exit 1