seitime-frappe/py/watch.py
2011-09-08 15:46:06 +05:30

11 lines
172 B
Python

"""
Watch the folder at regular intervals and build if files have been changed
"""
if __name__=='__main__':
import time, build
while 1:
build.run()
time.sleep(5)