Improve: change provider file modify time when updated (#1918)

This commit is contained in:
gVisor bot 2022-01-18 13:32:47 +08:00
parent 6e33263167
commit 14a453b1b1

View File

@ -102,6 +102,7 @@ func (f *fetcher) Update() (interface{}, bool, error) {
hash := md5.Sum(buf)
if bytes.Equal(f.hash[:], hash[:]) {
f.updatedAt = &now
os.Chtimes(f.vehicle.Path(), now, now)
return nil, true, nil
}