flaggy icon indicating copy to clipboard operation
flaggy copied to clipboard

StringSlice splits parameters with comma (",")

Open igngi opened this issue 1 year ago • 0 comments

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!

igngi avatar Dec 27 '23 11:12 igngi