Skip to content

Commit

Permalink
Merge pull request #347 from tututu-patch/master
Browse files Browse the repository at this point in the history
Fix cannot find 'nm'
  • Loading branch information
moloch-- authored Mar 11, 2021
2 parents 5dc2882 + 6259c2a commit 9beb445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/gogo/go.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func GoCmd(config GoConfig, cwd string, command []string) ([]byte, error) {
fmt.Sprintf("GOPATH=%s", config.ProjectDir),
fmt.Sprintf("GOCACHE=%s", config.GOCACHE),
fmt.Sprintf("GOMODCACHE=%s", config.GOMODCACHE),
fmt.Sprintf("PATH=%s", path.Join(config.GOROOT, "bin")),
fmt.Sprintf("PATH=%s:%s", path.Join(config.GOROOT, "bin"), os.Getenv("PATH")),
}
var stdout bytes.Buffer
var stderr bytes.Buffer
Expand Down

0 comments on commit 9beb445

Please sign in to comment.