From 1b072c71a721e39ca5a0e3466e679528e75e1a31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Thu, 2 Aug 2018 05:38:47 -0700 Subject: [PATCH] use yarn network mutex Summary: The file system mutex caused some problems in Sandcastle. This diffs switches for the default setting (network mutex) in the hope this fixes the problem Reviewed By: passy Differential Revision: D9132069 fbshipit-source-id: 5abb4d33b6db2a5d2b3f0788116ca6941e554591 --- scripts/yarn-install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/yarn-install.js b/scripts/yarn-install.js index fc13cee0c..b991966eb 100644 --- a/scripts/yarn-install.js +++ b/scripts/yarn-install.js @@ -39,7 +39,7 @@ Promise.all( new Promise((resolve, reject) => { const cwd = pkg.replace('/package.json', ''); exec( - [YARN_PATH, '--mutex', 'file'].join(' '), + YARN_PATH, { cwd, },