fix: restore check for out-build

This commit is contained in:
Johannes
2026-02-10 11:37:28 +01:00
parent 5ea70f9e5b
commit 1974429562

View File

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