fix: command system info missing go version (#1377)

This commit is contained in:
Leizhengzi 2021-12-27 22:05:27 +08:00 committed by GitHub
parent 787b046a70
commit 78ba00d3a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,6 @@ func getEnv() env {
e[os] = runtime.GOOS
e[arch] = runtime.GOARCH
e[goctlVersion] = version.BuildVersion
e[goctlVersion] = runtime.Version()
e[goVersion] = runtime.Version()
return e
}