From 2aae045dba8ad68d832213f49a2a45d10e9937f3 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Sat, 2 Nov 2024 15:01:36 +0100 Subject: [PATCH] fix(windows): build reh [skip ci] --- package_windows.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/package_windows.sh b/package_windows.sh index 0a322b6..bf58660 100755 --- a/package_windows.sh +++ b/package_windows.sh @@ -26,4 +26,18 @@ node build/azure-pipelines/distro/mixin-npm yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci" +if [[ "${VSCODE_ARCH}" == "x64" ]]; then + if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then + echo "Building REH" + yarn gulp minify-vscode-reh + yarn gulp "vscode-reh-win32-${VSCODE_ARCH}-min-ci" + fi + + if [[ "${SHOULD_BUILD_REH_WEB}" != "no" ]]; then + echo "Building REH-web" + yarn gulp minify-vscode-reh-web + yarn gulp "vscode-reh-web-win32-${VSCODE_ARCH}-min-ci" + fi +fi + cd ..