Revert "disable build buddy temproarily"

This reverts commit 868e5df87d.
This commit is contained in:
spalger 2021-05-27 16:36:19 -07:00
parent 48f7a479b5
commit fd561dda1b
2 changed files with 4 additions and 4 deletions

View file

@ -48470,8 +48470,8 @@ async function runBazelCommandWithRunner(bazelCommandRunner, bazelArgs, offline
stdio: 'pipe'
});
if (offline || !offline) {
bazelArgs = [...bazelArgs, '--config=offline'];
if (offline) {
bazelArgs.push('--config=offline');
}
const bazelProc = Object(_child_process__WEBPACK_IMPORTED_MODULE_4__["spawn"])(bazelCommandRunner, bazelArgs, bazelOpts);

View file

@ -29,8 +29,8 @@ async function runBazelCommandWithRunner(
stdio: 'pipe',
};
if (offline || !offline) {
bazelArgs = [...bazelArgs, '--config=offline'];
if (offline) {
bazelArgs.push('--config=offline');
}
const bazelProc = spawn(bazelCommandRunner, bazelArgs, bazelOpts);