Function writeManifestAndWatch [src]

Clears previous watch inputs, if any, and then populates watch inputs from the full set of files picked up by the cache manifest. Must be accompanied with cacheHitAndWatch.

Prototype

pub fn writeManifestAndWatch(s: *Step, man: *Build.Cache.Manifest) !void

Parameters

s: *Stepman: *Build.Cache.Manifest

Source

pub fn writeManifestAndWatch(s: *Step, man: *Build.Cache.Manifest) !void { try writeManifest(s, man); try setWatchInputsFromManifest(s, man); }