From 101bb90ab56848bdeb4f3ccd83c3a9b8ba949c0c Mon Sep 17 00:00:00 2001 From: Sam Coe Date: Thu, 22 Oct 2020 17:51:16 +0200 Subject: [PATCH] Add host back into repo flag description --- pkg/cmdutil/repo_override.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmdutil/repo_override.go b/pkg/cmdutil/repo_override.go index aede57ea6..8b3d36489 100644 --- a/pkg/cmdutil/repo_override.go +++ b/pkg/cmdutil/repo_override.go @@ -8,7 +8,7 @@ import ( ) func EnableRepoOverride(cmd *cobra.Command, f *Factory) { - cmd.PersistentFlags().StringP("repo", "R", "", "Select another repository using the `OWNER/REPO` format") + cmd.PersistentFlags().StringP("repo", "R", "", "Select another repository using the `[HOST/]OWNER/REPO` format") cmd.PersistentPreRun = func(cmd *cobra.Command, args []string) { repoOverride, _ := cmd.Flags().GetString("repo")