From e1810c82ad5d10211e937efd36a29d58cebd19e1 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Oct 2015 23:27:37 +1100 Subject: [PATCH] * Fix docs function in fabfile --- fabfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fabfile.py b/fabfile.py index f4fa28169..6080ff1da 100644 --- a/fabfile.py +++ b/fabfile.py @@ -67,6 +67,9 @@ def docs(): out_loc = path.join(pwd, 'site', out_dir) local('jade -P %s --out %s' % (jade_loc, out_loc)) + with virtualenv(VENV_DIR): + local('./website/create_code_samples tests/website/ website/src/code/')t + jade('home/index.jade', '') jade('docs/index.jade', 'docs/') jade('blog/index.jade', 'blog/')