Skip to content

Commit 0f134c6

Browse files
committed
Wrap long line
1 parent f86e540 commit 0f134c6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,9 @@ type versionInfo struct {
871871
}
872872

873873
func (v versionInfo) String() string {
874-
return fmt.Sprintf("go.mod version: %s, go.mod directive found: %t, go env version: %s, go installation found: %t", v.goModVersion, v.goDirectiveFound, v.goEnvVersion, v.goInstallationFound)
874+
return fmt.Sprintf(
875+
"go.mod version: %s, go.mod directive found: %t, go env version: %s, go installation found: %t",
876+
v.goModVersion, v.goDirectiveFound, v.goEnvVersion, v.goInstallationFound)
875877
}
876878

877879
// Check if Go is installed in the environment.

0 commit comments

Comments
 (0)