From fdb98833154679dbaa7af67a5a29fe19e55c2b73 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Fri, 29 Sep 2023 18:19:02 +0200 Subject: [PATCH] Make sure node-gyp is installed (#194492) --- build/azure-pipelines/darwin/product-build-darwin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/azure-pipelines/darwin/product-build-darwin.yml b/build/azure-pipelines/darwin/product-build-darwin.yml index dedc227caa777..8bdec848ec47e 100644 --- a/build/azure-pipelines/darwin/product-build-darwin.yml +++ b/build/azure-pipelines/darwin/product-build-darwin.yml @@ -77,7 +77,7 @@ steps: - script: | set -e export npm_config_arch=$(VSCODE_ARCH) - export npm_config_node_gyp=$(which node-gyp) + npm i -g node-gyp for i in {1..5}; do # try 5 times yarn --frozen-lockfile --check-files && break