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 ..