Update pkg/cmd/extension/manager.go

Co-authored-by: Tyler McGoffin <jtmcg@github.com>
This commit is contained in:
Tim Rogers 2024-09-18 18:55:20 +01:00 committed by GitHub
parent 81d57a0643
commit 195188cee8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()