diff --git a/pkg/cmd/repo/list/list.go b/pkg/cmd/repo/list/list.go index 62e16a596..158b12ce8 100644 --- a/pkg/cmd/repo/list/list.go +++ b/pkg/cmd/repo/list/list.go @@ -104,6 +104,11 @@ func listRun(opts *ListOptions) error { return err } + if err := opts.IO.StartPager(); err != nil { + fmt.Fprintf(opts.IO.ErrOut, "error starting pager: %v\n", err) + } + defer opts.IO.StopPager() + cs := opts.IO.ColorScheme() tp := utils.NewTablePrinter(opts.IO) now := opts.Now()