summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorChristoph Kluenter <ckluente@thoughtworks.com>2016-04-06 11:14:43 +0200
committerChristoph Kluenter <ckluente@thoughtworks.com>2016-04-06 11:14:43 +0200
commit6feeaf5c5cb5d22de079d68fb10bb9403a8412ed (patch)
treed699b2559403fa8a0af56460018363311654c022 /service/go
parent151e9578c75507b227af35dcdd2256c068caaea1 (diff)
use a locale that is always available and supports UTF-8
This fixes #676 Problem is, that en_US.UTF-8 might not be always available. Compass then falls back to C which is not UTF-8 capabable and fails on some asian strings we have. But C.UTF-8 is always available.
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/go b/service/go
index 4950975e..eb69341d 100755
--- a/service/go
+++ b/service/go
@@ -39,7 +39,7 @@ function setupjs {
cd ../web-ui
npm install
node_modules/bower/bin/bower install --config.interactive=false --allow-root
- LC_ALL=en_US.UTF-8 ./go build
+ LC_ALL=C.UTF-8 ./go build
cd -
echo "Done."
}