flaggy
flaggy copied to clipboard
StringSlice splits parameters with comma (",")
If I have a StringSlice
flag called -f
, passing -f "yes, this is all one parameter"
will result in []string{"yes", "this is all one parameter"}
and I need it to be []string{"yes, this is all one parameter"}
I know this is intended behavior since this commit, but is there a way to make it work the old way?
Thanks!