From 1974429562c0f230b794816dce80907a3428da08 Mon Sep 17 00:00:00 2001 From: Johannes Date: Tue, 10 Feb 2026 11:37:28 +0100 Subject: [PATCH] fix: restore check for out-build --- build/azure-pipelines/product-compile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/azure-pipelines/product-compile.yml b/build/azure-pipelines/product-compile.yml index 13a0df93262..bc13d980df2 100644 --- a/build/azure-pipelines/product-compile.yml +++ b/build/azure-pipelines/product-compile.yml @@ -103,9 +103,9 @@ jobs: - script: | set -e - # [ -d "out-build" ] || { echo "ERROR: out-build folder is missing" >&2; exit 1; } - # [ -n "$(find out-build -mindepth 1 2>/dev/null | head -1)" ] || { echo "ERROR: out-build folder is empty" >&2; exit 1; } - # echo "out-build exists and is not empty" + [ -d "out-build" ] || { echo "ERROR: out-build folder is missing" >&2; exit 1; } + [ -n "$(find out-build -mindepth 1 2>/dev/null | head -1)" ] || { echo "ERROR: out-build folder is empty" >&2; exit 1; } + echo "out-build exists and is not empty" ls -d out-vscode-* >/dev/null 2>&1 || { echo "ERROR: No out-vscode-* folders found" >&2; exit 1; } for folder in out-vscode-*; do