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
Looks like we added support for --enable_platform_specific_config to the CLI in this PR: cbdb3e5
CLI behavior seems to differ from Bazel in a couple of cases:
If you pass --enable_platform_specific_config with no arg - that enabled the functionality in Bazel land, but not in CLI land. I suspect that's due to this logic here:
Looks like we added support for
--enable_platform_specific_config
to the CLI in this PR: cbdb3e5CLI behavior seems to differ from Bazel in a couple of cases:
If you pass
--enable_platform_specific_config
with no arg - that enabled the functionality in Bazel land, but not in CLI land. I suspect that's due to this logic here:buildbuddy/cli/parser/parser.go
Line 806 in 25a335e
If you enable platform specific config for
common
But only have a config set for
build
And you run a
You get
Which is because we tack on
Which doesn't quite match Bazel's behavior
The text was updated successfully, but these errors were encountered: