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
fix(builtin): properly parse status file value containing spaces (#2615)
Based on Bazel's documentation, values provided through the workspace_status_command can contain
whitespace on the same line the key is defined on:
> The key names can be anything but they may only use upper case letters and underscores. The
> first space after the key name separates it from the value. The value is the rest of the line
> (including additional whitespaces).
The `parseStatusFile` utility function is updated to rely on a regex for performing this parsing to
match the described behavior.
0 commit comments