##// END OF EJS Templates
Fix dangling symlink bug in dirstate walk code
mpm@selenic.com -
r1228:db950da4 default
parent child Browse files
Show More
@@ -252,7 +252,8 b' class dirstate:'
252 252 if seen(np):
253 253 continue
254 254 p = os.path.join(top, f)
255 st = os.stat(p)
255 # don't trip over symlinks
256 st = os.lstat(p)
256 257 if stat.S_ISDIR(st.st_mode):
257 258 ds = os.path.join(nd, f +'/')
258 259 if statmatch(ds, st):
General Comments 0
You need to be logged in to leave comments. Login now