From 0492f24b86935e2cf9f00d92000ce5edbde843c4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 12 Jun 2011 23:18:49 -0400 Subject: [PATCH] make html => fab docs --- docs/Makefile | 3 --- fabfile.py | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 docs/Makefile diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index ea695e8..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -html: - - ronn -5 ./httpbin.1.md --style toc --pipe > ../httpbin/templates/httpbin.1.html \ No newline at end of file diff --git a/fabfile.py b/fabfile.py index cdcb961..6e5cc54 100644 --- a/fabfile.py +++ b/fabfile.py @@ -20,9 +20,8 @@ def _path_to(*loc): def docs(): - os.chdir(_path_to('docs')) - os.system('make') os.chdir(_path_to('.')) + os.system('ronn -5 README.md --style toc --pipe > ./httpbin/templates/httpbin.1.html') def prod():