aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-12-16 18:34:55 +0100
committerJakob Unterwurzacher2017-12-16 18:34:55 +0100
commit6d7595e5d5c09a8de6e7c2d830c17bb3e68a70db (patch)
tree109bd6d2fb83e52551650d255d30e586d938eabd
parent6dc0ccab43f4509bd64376189cdc147d5d80bd43 (diff)
Makefile: force C.UTF-8 locale
Fixes a Click / Python3 problem: RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment. Either switch to Python 2 or consult http://click.pocoo.org/python3/ for mitigation steps.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index af469c8..af4eb28 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
all:
git pull
- mkdocs build --clean 2>&1 | grep -v "Warning: Click detected the use of the unicode_literals"
+ LC_ALL=C.UTF-8 LANG=C.UTF-8 mkdocs build --clean
cp -af htaccess site/.htaccess
.PHONY: clean