We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c35838a commit bdb3fe4Copy full SHA for bdb3fe4
go/extractor/gomodextractor.go
@@ -20,6 +20,11 @@ func (extraction *Extraction) extractGoMod(path string) error {
20
path = normPath
21
}
22
23
+ if extraction.OverlayChanges != nil && !extraction.OverlayChanges[path] {
24
+ // This go.mod did not change since the base was extracted
25
+ return nil
26
+ }
27
+
28
extraction.Lock.Lock()
29
if extraction.SeenGoMods[path] {
30
extraction.Lock.Unlock()
0 commit comments