Describe the bug
When using remote bazel, if your repo has the common pattern of putting something like:
try-import %workspace%/user.bazelrc
At the bottom of the .bazelrc, that file isn't uploaded (since it's likely gitignored), and therefore options from it don't apply.
To Reproduce
- Clone this repo
echo "build --invalid_flag" >> user.bazelrc
bb build cli <- fails with ERROR: --invalid_flag :: Unrecognized option: --invalid_flag
bb remote build cli <- doesn't fail
Describe the bug
When using remote bazel, if your repo has the common pattern of putting something like:
At the bottom of the
.bazelrc, that file isn't uploaded (since it's likely gitignored), and therefore options from it don't apply.To Reproduce
echo "build --invalid_flag" >> user.bazelrcbb build cli<- fails withERROR: --invalid_flag :: Unrecognized option: --invalid_flagbb remote build cli<- doesn't fail