From dc2d564f01041906a1ac43e9c0428d630f6fd3c4 Mon Sep 17 00:00:00 2001 From: Antranig Vartanian Date: Sun, 5 Oct 2025 14:16:39 +0400 Subject: [PATCH] update validate_json.sh: not all packages need dependencies --- _Scripts/validate_json.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/_Scripts/validate_json.sh b/_Scripts/validate_json.sh index d11dddb..0cc323c 100755 --- a/_Scripts/validate_json.sh +++ b/_Scripts/validate_json.sh @@ -89,10 +89,6 @@ validate_json() { fi fi fi - if jq -e '.dependencies | type != "object"' "$json" >/dev/null 2>/dev/null; then - perror "$json invalid dependencies field (must be object)" - errors=$((errors + 1)) - fi if ! jq -e '.build | type == "array"' "$json" >/dev/null 2>/dev/null; then perror "$json invalid build field (must be array)" errors=$((errors + 1))