Vagrant: Fix locale setup problem

Because dozens of red locale errors during provisioning are scary
This commit is contained in:
Victor Grousset 2015-12-31 01:22:11 +01:00
parent fb6830dbb2
commit 1efbcc3ff4

View file

@ -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