From 2af27e8d748be9bd02370e39bb757c88ebc02186 Mon Sep 17 00:00:00 2001 From: Kira Muhlbauer Date: Mon, 22 Jul 2024 17:36:17 -0600 Subject: [PATCH] don't link to orb registry when host is not cloud --- cmd/orb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/orb.go b/cmd/orb.go index 332b451fe..2d8db7f46 100644 --- a/cmd/orb.go +++ b/cmd/orb.go @@ -621,7 +621,7 @@ func formatListOrbsResult(list api.OrbsForListing, opts orbOptions) (string, err } } - if !opts.private { + if !opts.private && opts.cfg.Host == defaultHost { b.WriteString("\nIn order to see more details about each orb, type: `circleci orb info orb-namespace/orb-name`\n") b.WriteString("\nSearch, filter, and view sources for all Orbs online at https://circleci.com/developer/orbs/") }