Update the minisig file timestamp together with the source file

This commit is contained in:
YX Hao 2023-04-06 18:26:03 +08:00
parent 92063aa76d
commit d88d4c7bd3

View file

@ -116,7 +116,8 @@ func (source *Source) writeToCache(bin, sig []byte, now time.Time) {
return return
} }
} }
writeErr = os.Chtimes(f, now, now) _ = os.Chtimes(f, now, now)
_ = os.Chtimes(f+".minisig", now, now)
} }
func (source *Source) parseURLs(urls []string) { func (source *Source) parseURLs(urls []string) {