Skip to content

Instantly share code, notes, and snippets.

@imankulov
Created March 26, 2013 19:37
Show Gist options
  • Save imankulov/5248493 to your computer and use it in GitHub Desktop.
Save imankulov/5248493 to your computer and use it in GitHub Desktop.
One-liner. Auto-building Sphinx docs with watchdog. Forked from http://jacobian.org/writing/auto-building-sphinx/
# pip install watchdog
exec watchmedo shell-command --patterns='*.rst;*.py' --ignore-pattern='_build/*' --recursive --command='make html' --wait
@cglacet
Copy link

cglacet commented Dec 1, 2020

Any idea why that would fail? I found similar commands all around but in my case it only react to one change (rebuild the doc once). Then hang.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment