File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Build behavior:
44
44
to 'false' disables the GOPATH set-up, CODEQL_EXTRACTOR_GO_BUILD_COMMAND (or alternatively
45
45
LGTM_INDEX_BUILD_COMMAND), can be set to a newline-separated list of commands to run in order to
46
46
install dependencies, and LGTM_INDEX_IMPORT_PATH can be used to override the package import path,
47
- which is otherwise inferred from the SEMMLE_REPO_URL or GITHUB_REPOSITORY environment variables.
47
+ which is otherwise inferred from the SEMMLE_REPO_URL or GITHUB_REPOSITORY environment variables.
48
48
49
49
In resource-constrained environments, the environment variable CODEQL_EXTRACTOR_GO_MAX_GOROUTINES
50
50
(or its legacy alias SEMMLE_MAX_GOROUTINES) can be used to limit the number of parallel goroutines
@@ -931,9 +931,9 @@ func getVersionToInstall(v versionInfo) (msg, version string) {
931
931
func outputEnvironmentJson (version string ) {
932
932
var content string
933
933
if version == "" {
934
- content = `{ "include ": [] }`
934
+ content = `{ "configuration ": { "go": {} } }`
935
935
} else {
936
- content = `{ "include ": [ { "go": { "version": "` + version + `" } } ] }`
936
+ content = `{ "configuration ": { "go": { "version": "` + version + `" } } }`
937
937
}
938
938
_ , err := fmt .Fprint (os .Stdout , content )
939
939
You can’t perform that action at this time.
0 commit comments