mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 13:11:49 +00:00
14 lines
600 B
Diff
14 lines
600 B
Diff
diff --git a/go/tools/builders/compilepkg.go b/go/tools/builders/compilepkg.go
|
|
index b909fa86..4a1fc5ba 100644
|
|
--- a/go/tools/builders/compilepkg.go
|
|
+++ b/go/tools/builders/compilepkg.go
|
|
@@ -453,7 +453,7 @@ func compileArchive(
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
nogoChan = make(chan error)
|
|
go func() {
|
|
- nogoChan <- runNogo(ctx, workDir, nogoPath, goSrcsNogo, facts, packagePath, importcfgPath, outFactsPath)
|
|
+ nogoChan <- runNogo(ctx, workDir, nogoPath, goSrcsNogo, facts, importPath, importcfgPath, outFactsPath)
|
|
}()
|
|
defer func() {
|
|
if nogoChan != nil {
|