We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ebc5ce commit 15ec2b7Copy full SHA for 15ec2b7
command/issue.go
@@ -67,13 +67,13 @@ var issueListCmd = &cobra.Command{
67
Short: "List and filter issues in this repository",
68
Args: func(cmd *cobra.Command, args []string) error {
69
if len(args) > 0 {
70
- return fmt.Errorf("unknown command %q for %q. Please include whitespace separated issue names within quotes if necessary", args[0], cmd.CommandPath())
+ return fmt.Errorf("unknown argument %q for %q: Please quote all flag values that contain spaces.", args[0], cmd.CommandPath())
71
}
72
return nil
73
},
74
Example: `
75
- gh issue list
76
- gh issue list -l "help wanted"
+ $ gh issue list -l "help wanted"
+ $ gh issue list -A "some author"
77
`,
78
RunE: issueList,
79
0 commit comments