From a59af385d53057130753d400040e8a7544a503a8 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 5 May 2018 20:55:11 +0100 Subject: [PATCH] Pass LANG variable to msgfilter in crowdin script --- .ci/Jenkinsfile.crowdin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Jenkinsfile.crowdin b/.ci/Jenkinsfile.crowdin index 74600b41..72963ca2 100644 --- a/.ci/Jenkinsfile.crowdin +++ b/.ci/Jenkinsfile.crowdin @@ -38,7 +38,7 @@ timestamps { sh "$crowdin_cli download --branch ${upstream_branch}" } } - sh 'find . -name "*.po" -exec msgfilter -i "{}" -o "{}.replacement" .ci/cleanup-po.pl ";"' + sh 'LANG=en_US.utf8 find . -name "*.po" -exec msgfilter -i "{}" -o "{}.replacement" .ci/cleanup-po.pl ";"' sh 'find . -name "*.po" -exec mv "{}.replacement" "{}" ";"' } stage('Push') {