##// END OF EJS Templates
eol: cache needs update, also if it has same timestamp as the source...
Mads Kiilerich -
r43475:fd8c3f59 default
parent child Browse files
Show More
@@ -401,7 +401,7 b' def reposetup(ui, repo):'
401 except OSError:
401 except OSError:
402 eolmtime = 0
402 eolmtime = 0
403
403
404 if eolmtime > cachemtime:
404 if eolmtime >= cachemtime and eolmtime > 0:
405 self.ui.debug(b"eol: detected change in .hgeol\n")
405 self.ui.debug(b"eol: detected change in .hgeol\n")
406
406
407 hgeoldata = self.wvfs.read(b'.hgeol')
407 hgeoldata = self.wvfs.read(b'.hgeol')
General Comments 0
You need to be logged in to leave comments. Login now