You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StringArrayVar defines a string flag with specified name, default value, and usage string. The argument p points to a []string variable in which to store the value of the flag. The value of each argument will not try to be separated by comma. Use a StringSlice for that.
The text was updated successfully, but these errors were encountered:
Is this a BUG REPORT or FEATURE REQUEST?:
Bug report
What happened:
The documentation on
--reap-tainted
doesn't seem to be correctWhat you expected to happen:
The documentation should be accurate
How to reproduce it (as minimally and precisely as possible):
the documentation says:
But this flag seems to be using
StringArrayVar
that means we need to pass the flag multiple times instead of a comma separated string, see: https://pkg.go.dev/github.com/spf13/pflag#StringArrayVarThe text was updated successfully, but these errors were encountered: