From cee7d2a0468689d00aaf6105ad7a07eb520fca9b Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 27 May 2017 20:33:03 +0200 Subject: [PATCH] release script: use English locale (refs #407) --- do-release.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/do-release.sh b/do-release.sh index 33e1b9c530..60acc95b32 100755 --- a/do-release.sh +++ b/do-release.sh @@ -1,5 +1,8 @@ #!/bin/bash +# Make sure, everything is English... +export LANG=C.UTF8 + # verify the current directory if [ ! -f pom.xml -o ! -d ../pmd.github.io ]; then echo "You seem to be in the wrong working directory or you don't have pmd.github.io checked out..."