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
A build setting that accepts one or more string-typed settings on the command line, with the values concatenated into a single string list; for example, `--//my/setting=foo``--//my/setting=bar` will be parsed as `['foo', 'bar']`. Contrast with `string_list_flag`
108
+
109
+
**ATTRIBUTES**
110
+
111
+
112
+
| Name | Description | Type | Mandatory | Default |
| <aid="repeatable_string_flag-name"></a>name | A unique name for this target. | <ahref="https://bazel.build/concepts/labels#target-names">Name</a> | required ||
115
+
| <aid="repeatable_string_flag-scope"></a>scope | The scope indicates where a flag can propagate to | String | optional |`"universal"`|
A string list-typed build setting that cannot be set on the command line
172
+
A string list-typed build setting which expects its value on the command line to be given in comma-separated format; for example, `--//my/setting=foo,bar` will be parsed as `['foo', 'bar']`. Contrast with `repeatable_string_flag`
0 commit comments