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
It is not uncommon that some programs support repeating arguments to provide multiple values, i.e. in following format: example -p "first argument" -p "second one" -p "third one"
It is currently not possible to use BuildArgs to build arguments in such way, since it depends on using map[string]string, thus not allowing for repeated values.
The text was updated successfully, but these errors were encountered:
It is not uncommon that some programs support repeating arguments to provide multiple values, i.e. in following format:
example -p "first argument" -p "second one" -p "third one"
It is currently not possible to use
BuildArgs
to build arguments in such way, since it depends on usingmap[string]string
, thus not allowing for repeated values.The text was updated successfully, but these errors were encountered: