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 2dd8d10 commit 05958cbCopy full SHA for 05958cb
internal/scan/run.go
@@ -82,7 +82,7 @@ func prepareConfig(ctx context.Context, cfg *config, client *client.Client) {
82
}
83
if cfg.GoVersion == "" {
84
if out, err := exec.Command("go", "env", "GOVERSION").Output(); err == nil {
85
- cfg.GoVersion = string(out)
+ cfg.GoVersion = strings.TrimSpace(string(out))
86
87
88
0 commit comments