Skip to content

Commit 89ceff7

Browse files
committed
try to fix failure
1 parent b63e1c4 commit 89ceff7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/validate_published_rules.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def validate_all_rules(
285285

286286
if not os.path.isdir(published_dir):
287287
print(f"ERROR: Published/ not found under {rules_root}", file=sys.stderr)
288-
return True
288+
return False
289289

290290
rule_ids = sorted(
291291
entry
@@ -295,7 +295,7 @@ def validate_all_rules(
295295

296296
if not rule_ids:
297297
print("ERROR: No rule directories found under Published/", file=sys.stderr)
298-
return True
298+
return False
299299

300300
print(f"Found {len(rule_ids)} rule(s) under Published/")
301301

0 commit comments

Comments
 (0)