From 2d9400f0a4dbfb4780624f594911f39457c16569 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 13 Jun 2011 13:12:44 -0400 Subject: [PATCH] ronn, only write content --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 6670b42..f7a90f7 100644 --- a/fabfile.py +++ b/fabfile.py @@ -21,7 +21,7 @@ def _path_to(*loc): def docs(): os.chdir(_path_to('.')) - os.system('ronn -5 README.md --style 80c --pipe > ./httpbin/templates/httpbin.1.html') + os.system('ronn -5 -f README.md --style 80c --pipe > ./httpbin/templates/httpbin.1.html') def prod(): @@ -34,7 +34,7 @@ def prod(): def push(): """Deploys the application""" - docs() + # docs() prod() local('epio upload')