seitime-frappe/py/watch.py
Rushabh Mehta 0abfaf1180 version 2
2011-09-07 17:27:20 +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(2)