mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
9 lines
253 B
Plaintext
9 lines
253 B
Plaintext
|
#!/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('Makefile', shell('make html'))
|
||
|
Task.add('conf.py', shell('make html'))
|