We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 158773c commit b1dba2bCopy full SHA for b1dba2b
1 file changed
main.go
@@ -60,7 +60,7 @@ func realMain(start time.Time, args []string, confFunc userConfigDirFunc, stdout
60
61
allCandidates := newCandidates(int(cfg.maxCount.v), cfg.maxAge)
62
cc := newConcurrencyController(int(cfg.maxScanners.v))
63
- scn := newScanner(cfg, cc, allCandidates, time.Now(), stderr)
+ scn := newScanner(cfg, cc, allCandidates, start, stderr)
64
for _, dirName := range scanList {
65
dirName = filepath.Clean(dirName) // Clean here so we can avoid .Join/Clean later
66
scn.descend(0, dirName) // Runs a goroutine
0 commit comments