mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-14 23:18:36 +00:00
fix: restore check for out-build
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user