From 3d1fe5a5b72c7949e3fe3d3bff9b8dcca2f5dd81 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 5 Sep 2020 14:03:34 +0200 Subject: [PATCH] tasks: be more verbose on error --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index ca86056a..b4c3c391 100644 --- a/tasks.py +++ b/tasks.py @@ -54,7 +54,7 @@ def build(c): # Generate the website from scratch c.run("rm -rf deploy") conf = "site-production.yaml" - c.run('hyde gen -c %s' % conf) + c.run('hyde -x gen -c %s' % conf) # Compute hash for media files with c.cd("deploy"): -- 2.39.5