Allow other options to follow --color without spec
This commit is contained in:
parent
9b9ad39143
commit
cfdb00b971
@ -246,7 +246,7 @@ func nextString(args []string, i *int, message string) string {
|
||||
}
|
||||
|
||||
func optionalNextString(args []string, i *int) string {
|
||||
if len(args) > *i+1 {
|
||||
if len(args) > *i+1 && !strings.HasPrefix(args[*i+1], "-") {
|
||||
*i++
|
||||
return args[*i]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user