mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[kbn/pm] replace a few missing awaits
This commit is contained in:
parent
775906503f
commit
d9017b9b07
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ export const command = {
|
|||
// our custom logic have determined there is a chance node_modules have been manually deleted and as such bazel
|
||||
// tracking mechanism is no longer valid
|
||||
const forceInstall =
|
||||
args.getBooleanValue('force-install') ?? haveNodeModulesBeenManuallyDeleted();
|
||||
args.getBooleanValue('force-install') ?? (await haveNodeModulesBeenManuallyDeleted());
|
||||
|
||||
await Bazel.tryRemovingBazeliskFromYarnGlobal(log);
|
||||
|
||||
|
@ -83,7 +83,7 @@ export const command = {
|
|||
}
|
||||
|
||||
const plugins = await time('plugin discovery', async () => {
|
||||
return pluginDiscovery();
|
||||
return await pluginDiscovery();
|
||||
});
|
||||
|
||||
// generate the synthetic package map which powers several other features, needed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue