From d424ff23caddce71733849a830fdfbcaabf9a28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moreno?= Date: Wed, 20 May 2020 15:18:21 +0200 Subject: [PATCH] skip remote for win32 arm64 --- build/npm/postinstall.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/npm/postinstall.js b/build/npm/postinstall.js index 7a2320d8289..f3a5e221a4a 100644 --- a/build/npm/postinstall.js +++ b/build/npm/postinstall.js @@ -33,9 +33,10 @@ function yarnInstall(location, opts) { yarnInstall('extensions'); // node modules shared by all extensions -yarnInstall('remote'); // node modules used by vscode server - -yarnInstall('remote/web'); // node modules used by vscode web +if (!(process.platform === 'win32' && process.arch === 'arm64')) { + yarnInstall('remote'); // node modules used by vscode server + yarnInstall('remote/web'); // node modules used by vscode web +} const allExtensionFolders = fs.readdirSync('extensions'); const extensions = allExtensionFolders.filter(e => { -- GitLab