Skip to content

Commit 38bea71

Browse files
fix: Add a newline delimiter when suggesting versions to install (#1972)
Co-authored-by: Trevor Brown <[email protected]>
1 parent 1acf082 commit 38bea71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/cli/cli.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ func getExecutable(logger *log.Logger, conf config.Config, command string) (exec
678678

679679
for _, toolVersion := range toolVersions {
680680
for _, version := range toolVersion.Versions {
681-
fmt.Printf("%s %s", toolVersion.Name, version)
681+
fmt.Printf("%s %s\n", toolVersion.Name, version)
682682
}
683683
}
684684
}

0 commit comments

Comments
 (0)