Skip to content

Commit 1beb348

Browse files
committed
Fix outdated message
1 parent 02a224c commit 1beb348

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go/extractor/cli/go-autobuilder/go-autobuilder.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,8 @@ func getVersionWhenGoModVersionNotFound(v versionInfo) (msg, version string) {
743743
// There is no Go version installed in the environment. We have no indication which version
744744
// was intended to be used to build this project. Go versions are generally backwards
745745
// compatible, so we install the maximum supported version.
746-
msg = "No version of Go installed and no `go.mod` file found. Writing an environment " +
747-
"file specifying the maximum supported version of Go (" + maxGoVersion + ")."
746+
msg = "No version of Go installed and no `go.mod` file found. Requesting the maximum " +
747+
"supported version of Go (" + maxGoVersion + ")."
748748
version = maxGoVersion
749749
diagnostics.EmitNoGoModAndNoGoEnv(msg)
750750
} else if outsideSupportedRange(v.goEnvVersion) {

0 commit comments

Comments
 (0)