Skip to content

Commit 936b612

Browse files
authored
Fix include option in the check grammars script (#955)
Clap 3.2 uses a single string for many argument's values
1 parent ceb4ccb commit 936b612

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check-grammar-crate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def run_rca(
8989
"--output-format=json",
9090
"--pr",
9191
"-I",
92-
*include_grammars,
92+
",".join(include_grammars),
9393
"-p",
9494
repo_dir,
9595
"-o",

0 commit comments

Comments
 (0)