Skip to content

Commit b482d44

Browse files
Use plain output for up-to-date message in update command
- Replace style.Successf with fmt.Fprintf for the "already up to date" message - Keeps output simple and consistent with non-styled update flow
1 parent 37de39e commit b482d44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command/update/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func runUpdate(cmd *cobra.Command) error {
3838

3939
if state == nil {
4040
bi := buildinfo.GetBuildInfo()
41-
style.Successf(w, "Already up to date (v%s)", bi.Version)
41+
fmt.Fprintf(w, "Already up to date (v%s)\n", bi.Version)
4242
return nil
4343
}
4444

0 commit comments

Comments
 (0)