Pillow/docs/Guardfile
Andrew Murray 3693b84ba0 Lint fixes
2023-06-02 09:21:47 +10:00

9 lines
254 B
Ruby
Executable File

#!/usr/bin/env python3
from livereload.compiler import shell
from livereload.task import Task
Task.add("*.rst", shell("make html"))
Task.add("*/*.rst", shell("make html"))
Task.add("Makefile", shell("make html"))
Task.add("conf.py", shell("make html"))