Skip to content

Commit

Permalink
[go linker] Properly ignore non-Go packages
Browse files Browse the repository at this point in the history
  • Loading branch information
csweichel committed Sep 7, 2021
1 parent d8f664e commit f7fa9bc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/linker/golang.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ func LinkGoModules(workspace *leeway.Workspace) error {
mod, ok := mods[dep.FullName()]
if !ok {
log.WithField("dep", dep.FullName()).Warn("did not find go.mod for this package - linking will probably be broken")
continue
}

apmods = append(apmods, mod)
Expand Down

0 comments on commit f7fa9bc

Please sign in to comment.