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 62653fb commit 5d06adbCopy full SHA for 5d06adb
go/extractor/cli/go-autobuilder/go-autobuilder.go
@@ -744,9 +744,7 @@ func checkForUnsupportedVersions(v versionInfo) (msg, version string) {
744
") is outside of the supported range (" + minGoVersion + "-" + maxGoVersion + ")."
745
version = ""
746
diagnostics.EmitUnsupportedVersionGoMod(msg)
747
- }
748
-
749
- if v.goEnvVersionFound && outsideSupportedRange(v.goEnvVersion) {
+ } else if v.goEnvVersionFound && outsideSupportedRange(v.goEnvVersion) {
750
msg = "The version of Go installed in the environment (" + v.goEnvVersion +
751
752
0 commit comments