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
In `9b5d663`, a bug was introduced that resulted in empty linker flags
on MacOS. In Starlark, `[a] + [b] if c else []` results in `[]`, if `c` is False. To
just make `[b]` conditional, parenthesis must be used: `[a] + ([b] if c
else [])`.
0 commit comments