##// END OF EJS Templates
inotify: follow new files if they are regular or a symlink....
Nicolas Dumazet -
r10089:8fab3172 default
parent child Browse files
Show More
@@ -250,7 +250,7 b' class repowatcher(server.repowatcher, po'
250 self.update_hgignore()
250 self.update_hgignore()
251 try:
251 try:
252 st = self.stat(wpath)
252 st = self.stat(wpath)
253 if stat.S_ISREG(st[0]):
253 if stat.S_ISREG(st[0]) or stat.S_ISLNK(st[0]):
254 self.updatefile(wpath, st)
254 self.updatefile(wpath, st)
255 except OSError:
255 except OSError:
256 pass
256 pass
General Comments 0
You need to be logged in to leave comments. Login now