##// 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 250 self.update_hgignore()
251 251 try:
252 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 254 self.updatefile(wpath, st)
255 255 except OSError:
256 256 pass
General Comments 0
You need to be logged in to leave comments. Login now