選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

12 行
172 B

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