By exporting the LC_ALL=C we can get rid of localisation issues, as the actual scripts are already assuming an english installation. FIxes bug 1227527 Change-Id: Ieeebce4d53b09959146a970f3fb803201ac5ebdf
@@ -10,6 +10,8 @@ set -o errexit
set -o nounset
set -o xtrace
+export LC_ALL=C
+
# Abort if localrc is not set
if [ ! -e ../../localrc ]; then
echo "You must have a localrc with ALL necessary passwords defined before proceeding."