Pillow/docs/Guardfile
2019-07-06 16:37:57 -07:00

10 lines
304 B
Ruby
Executable File

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