disable build buddy temproarily

This commit is contained in:
spalger 2021-05-27 14:30:32 -07:00
parent 66867bbede
commit 868e5df87d
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) {
bazelArgs.push('--config=offline');
if (offline || !offline) {
bazelArgs = [...bazelArgs, '--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) {
bazelArgs.push('--config=offline');
if (offline || !offline) {
bazelArgs = [...bazelArgs, '--config=offline'];
}
const bazelProc = spawn(bazelCommandRunner, bazelArgs, bazelOpts);