Skip to content

Commit 3cc47c6

Browse files
committed
Ruleset extraction script: replaced call to die with a thrown exception.
1 parent 1053f68 commit 3cc47c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/extract-rules-from-ruleset.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if ($result) {
88
array_shift($matches);
99
} else {
10-
die('Cannot find rules in Ruleset.md');
10+
throw new RuntimeException('Cannot find rules in Ruleset.md');
1111
}
1212

1313
$rules = array_combine($matches['code'], $matches['level']);

0 commit comments

Comments
 (0)