Skip to content

Commit 81be274

Browse files
committed
fix casing in dr is ready
1 parent aaa5e30 commit 81be274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/installer/cli/restore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ func installAddonsForRestore(ctx context.Context, kcli client.Client, mcli metad
463463
loading = spinner.Start()
464464
loading.Infof("Installing %s", progress.Name)
465465
case apitypes.StateSucceeded:
466-
loading.Closef("%s is ready", progress.Name)
466+
loading.Closef("%s is ready", strings.ToUpper(progress.Name[:1])+progress.Name[1:])
467467
case apitypes.StateFailed:
468468
loading.ErrorClosef("Failed to install %s", progress.Name)
469469
}

0 commit comments

Comments
 (0)