From: Victor Grousset Date: Thu, 31 Dec 2015 00:22:11 +0000 (+0100) Subject: Vagrant: Fix locale setup problem X-Git-Tag: live~3871^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/1efbcc3ff46d32c6a575ff917d7d2eba6e3472df Vagrant: Fix locale setup problem Because dozens of red locale errors during provisioning are scary --- diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index df2cfa960..5699b537b 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash # set locale to UTF-8 compatible. apologies to non-english speakers... +locale-gen en_GB.utf8 update-locale LANG=en_GB.utf8 LC_ALL=en_GB.utf8 -locale-gen export LANG=en_GB.utf8 export LC_ALL=en_GB.utf8