diff --git a/live.py b/live.py index 4177e23..3ca621b 100644 --- a/live.py +++ b/live.py @@ -7,7 +7,7 @@ build_docs = shell("make html") print("Doing an initial build of the docs...") build_docs() -server.watch("source/*.rst", build_docs) +server.watch("source/*", build_docs) +server.watch("source/**/*", build_docs) server.watch("_templates/*.html", build_docs) -server.watch("source/**/*.rst", build_docs) server.serve(root="build/html")