From 195188cee8751247d94c0196ac5ab20371210591 Mon Sep 17 00:00:00 2001 From: Tim Rogers Date: Wed, 18 Sep 2024 18:55:20 +0100 Subject: [PATCH] Update pkg/cmd/extension/manager.go Co-authored-by: Tyler McGoffin --- pkg/cmd/extension/manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/extension/manager.go b/pkg/cmd/extension/manager.go index 6bed532d3..410d4c224 100644 --- a/pkg/cmd/extension/manager.go +++ b/pkg/cmd/extension/manager.go @@ -285,8 +285,8 @@ func (m *Manager) installBin(repo ghrepo.Interface, target string) error { issueCreateCommand := generateMissingBinaryIssueCreateCommand(repo.RepoOwner(), repo.RepoName(), platform) return fmt.Errorf( - "%[1]s\n\nOpen an issue on the extension's repo by running the following command:\n\n `%[2]s`", - errorMessageInRed, issueCreateCommand) + "%[1]s\n\nTo request support for %[2]s, open an issue on the extension's repo by running the following command:\n\n `%[3]s`", + errorMessageInRed, platform, issueCreateCommand) } name := repo.RepoName()