From 3b5f07fe1543bf4d207406ffc516ed57c93f8d43 Mon Sep 17 00:00:00 2001 From: Julien Iguchi-Cartigny Date: Mon, 14 Oct 2013 10:10:38 +0200 Subject: [PATCH] fix #1116, pages are not generated in version 3.3.0 Added output directory to build and generate commands of fabfile template --- pelican/tools/templates/fabfile.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/tools/templates/fabfile.py.in b/pelican/tools/templates/fabfile.py.in index 73c64ac8..eac167b9 100644 --- a/pelican/tools/templates/fabfile.py.in +++ b/pelican/tools/templates/fabfile.py.in @@ -22,14 +22,14 @@ def clean(): local('mkdir {deploy_path}'.format(**env)) def build(): - local('pelican -s pelicanconf.py') + local('pelican content/ -s pelicanconf.py') def rebuild(): clean() build() def regenerate(): - local('pelican -r -s pelicanconf.py') + local('pelican content/ -r -s pelicanconf.py') def serve(): local('cd {deploy_path} && python -m SimpleHTTPServer'.format(**env))