mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
fix(NA): inver bazel config args order on kbn_pm runBazel function (#137307)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
d2fb7e1f76
commit
93c38fee22
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ function throwBazelError(log, name, code, output) {
|
|||
async function runBazel(log, inputArgs, opts = undefined) {
|
||||
const bazel = (await getBazelRunner()).runBazel;
|
||||
|
||||
const args = [...(opts?.offline ? ['--config=offline'] : []), ...inputArgs];
|
||||
const args = [...inputArgs, ...(opts?.offline ? ['--config=offline'] : [])];
|
||||
log.debug(`> bazel ${args.join(' ')}`);
|
||||
await bazel(args, {
|
||||
env: opts?.env,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue