From fb0904f3853a1b3ae0adc210d9f8eda3a6cc2030 Mon Sep 17 00:00:00 2001 From: Jean Paul Mugizi Date: Mon, 24 Oct 2016 13:26:29 -0700 Subject: [PATCH] fix encoding issues in serve command --- docker-compose.yml | 2 +- serve | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index dab018760..0ea99399a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,6 +4,6 @@ app: volumes: - .:/app entrypoint: ruby /app/docker_entrypoint.rb - command: ./serve --host 0.0.0.0 --incremental --trace + command: ./serve ports: - "4000:4000" \ No newline at end of file diff --git a/serve b/serve index 162916d5f..67de7bfe3 100755 --- a/serve +++ b/serve @@ -2,4 +2,4 @@ if [ -n $FAST_BUILDS ]; then export FAST_BUILDS=true; fi -bundle exec jekyll serve --watch --incremental --config="_config.yml,_config-fast-builds.yml,_config-dev.yml" +LC_ALL="en_US.UTF-8" bundle exec jekyll serve --watch --host 0.0.0.0 --trace --config="_config.yml,_config-fast-builds.yml,_config-dev.yml"