From 242a44862779ec05686986a9015e7d7542fe4ece Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Wed, 13 Aug 2025 18:43:31 +0200 Subject: [PATCH] chore: delete win32-app-container-tokens node modules (#2461) --- build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.sh b/build.sh index 834ac4c..bebcbba 100755 --- a/build.sh +++ b/build.sh @@ -23,6 +23,9 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then npm run gulp minify-vscode if [[ "${OS_NAME}" == "osx" ]]; then + # remove win32 node modules + rm -f .build/extensions/ms-vscode.js-debug/src/win32-app-container-tokens.*.node + # generate Group Policy definitions node build/lib/policies darwin @@ -53,6 +56,9 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then VSCODE_PLATFORM="win32" else # linux + # remove win32 node modules + rm -f .build/extensions/ms-vscode.js-debug/src/win32-app-container-tokens.*.node + # in CI, packaging will be done by a different job if [[ "${CI_BUILD}" == "no" ]]; then npm run gulp "vscode-linux-${VSCODE_ARCH}-min-ci"