From eca0ee04b7cc5af36a1d9c43e9a9ba2cf8387a4c Mon Sep 17 00:00:00 2001 From: Deniz Turgut Date: Wed, 23 Mar 2022 22:33:57 +0300 Subject: [PATCH] use JSON values for extra settings in invoke template Signed-off-by: Deniz Turgut --- pelican/tools/templates/tasks.py.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/tools/templates/tasks.py.jinja2 b/pelican/tools/templates/tasks.py.jinja2 index 861dee37..f3caed56 100644 --- a/pelican/tools/templates/tasks.py.jinja2 +++ b/pelican/tools/templates/tasks.py.jinja2 @@ -107,7 +107,7 @@ def livereload(c): from livereload import Server def cached_build(): - cmd = '-s {settings_base} -e CACHE_CONTENT=True LOAD_CONTENT_CACHE=True' + cmd = '-s {settings_base} -e CACHE_CONTENT=true LOAD_CONTENT_CACHE=true' pelican_run(cmd.format(**CONFIG)) cached_build()