diff options
author | Jakob Unterwurzacher | 2017-12-16 18:34:55 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-12-16 18:34:55 +0100 |
commit | 6d7595e5d5c09a8de6e7c2d830c17bb3e68a70db (patch) | |
tree | 109bd6d2fb83e52551650d255d30e586d938eabd /Makefile | |
parent | 6dc0ccab43f4509bd64376189cdc147d5d80bd43 (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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |