mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
This commit is contained in:
parent
26fc0a9fb4
commit
1d662e586a
2 changed files with 2 additions and 2 deletions
2
packages/kbn-pm/dist/index.js
vendored
2
packages/kbn-pm/dist/index.js
vendored
|
@ -19655,7 +19655,7 @@ exports.runScriptInPackage = exports.installInDir = undefined;
|
|||
*/
|
||||
let installInDir = exports.installInDir = (() => {
|
||||
var _ref = _asyncToGenerator(function* (directory, extraArgs = []) {
|
||||
const options = ['install', '--non-interactive', '--mutex=file', ...extraArgs];
|
||||
const options = ['install', '--non-interactive', ...extraArgs];
|
||||
// We pass the mutex flag to ensure only one instance of yarn runs at any
|
||||
// given time (e.g. to avoid conflicts).
|
||||
yield (0, _child_process.spawn)('yarn', options, {
|
||||
|
|
|
@ -24,7 +24,7 @@ import { Project } from './project';
|
|||
* Install all dependencies in the given directory
|
||||
*/
|
||||
export async function installInDir(directory: string, extraArgs: string[] = []) {
|
||||
const options = ['install', '--non-interactive', '--mutex=file', ...extraArgs];
|
||||
const options = ['install', '--non-interactive', ...extraArgs];
|
||||
|
||||
// We pass the mutex flag to ensure only one instance of yarn runs at any
|
||||
// given time (e.g. to avoid conflicts).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue