diff --git a/cmd/pilotctl/appstore_catalogue.go b/cmd/pilotctl/appstore_catalogue.go index 74ad9810..085eec5c 100644 --- a/cmd/pilotctl/appstore_catalogue.go +++ b/cmd/pilotctl/appstore_catalogue.go @@ -274,10 +274,9 @@ func cmdAppStoreCatalogue(_ []string) { fmt.Printf(" %s\n", strings.Join(bits, " ยท ")) } fmt.Printf(" %s\n", e.Description) - // Point at the new detail view when extended metadata is published. - if e.MetadataURL != "" { - fmt.Printf(" view: pilotctl appstore view %s\n", e.ID) - } + // Always point at the detail view; `pilotctl appstore view ` works + // from the catalogue entry alone (rich metadata is optional). + fmt.Printf(" view: pilotctl appstore view %s\n", e.ID) fmt.Printf(" install: pilotctl appstore install %s\n", e.ID) } }