Skip to content

Commit

Permalink
disable build buddy temproarily
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed May 27, 2021
1 parent 66867bb commit 868e5df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/kbn-pm/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions packages/kbn-pm/src/utils/bazel/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 868e5df

Please sign in to comment.