Skip to content

Commit 6dc7106

Browse files
Discard vendors with no relevant integration
1 parent b1e81b0 commit 6dc7106

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

scripts/generate-catalogs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,9 @@ def main():
271271
for vendor in vendors:
272272
print(f" Processing {vendor}...")
273273
manifest = generate_vendor_manifest(vendor)
274+
if manifest['stats']['total'] == 0:
275+
print(f" Skipping {vendor}: no content (0 analyzers, responders, functions, or external integrations)")
276+
continue
274277
all_manifests[vendor] = manifest
275278

276279
vendor_catalog_path = vendors_catalogs_path / vendor

0 commit comments

Comments
 (0)