blob: 84cec2ab8e36565d7137828c1428f0bb112b6476 [file] [log] [blame]
#!/bin/sh
# autobuild.sh: Monitors the source directory for documentation file changes
# and builds it continuously in the background.
#
# Public domain.
#
scripts/nosy .
# First forced build.
#make -C docs html
# Monitored builds.
#bin/python watchmedo shell-command \
# --patterns="*.rst;*.rst.inc;*.py;*.py.swp;*.rst.swp;*.rst.inc.swp" \
# --ignore-patterns=".*;#*;*~" \
# --ignore-directories \
# --recursive \
# --command='make -C docs html' \
# watchdog/ docs/source/