Skip to content

Commit

Permalink
fix(NA): remove mutex from kbn bootstrap script as all jobs are runni…
Browse files Browse the repository at this point in the history
…ng isolated. (elastic#26058)
  • Loading branch information
mistic committed Nov 22, 2018
1 parent 165d0f4 commit 0adc675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-pm/dist/index.js
Expand Up @@ -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, {
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-pm/src/utils/scripts.ts
Expand Up @@ -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).
Expand Down

0 comments on commit 0adc675

Please sign in to comment.