Skip to content

Commit 7ebbfcd

Browse files
committed
fix casing in dr is ready
1 parent f13ef07 commit 7ebbfcd

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
@@ -462,7 +462,7 @@ func installAddonsForRestore(ctx context.Context, kcli client.Client, mcli metad
462462
loading = spinner.Start()
463463
loading.Infof("Installing %s", progress.Name)
464464
case apitypes.StateSucceeded:
465-
loading.Closef("%s is ready", progress.Name)
465+
loading.Closef("%s is ready", strings.ToUpper(progress.Name[:1])+progress.Name[1:])
466466
case apitypes.StateFailed:
467467
loading.ErrorClosef("Failed to install %s", progress.Name)
468468
}

0 commit comments

Comments
 (0)