From 88b9e4b0f60323e9b274ad90ea2ecdee061e15f9 Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Mon, 19 Dec 2022 17:48:49 +0100 Subject: [PATCH] Extract grammars to check from Cargo.toml --- check-grammars-crates.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check-grammars-crates.sh b/check-grammars-crates.sh index 4fa169f04..673b60c30 100755 --- a/check-grammars-crates.sh +++ b/check-grammars-crates.sh @@ -4,7 +4,7 @@ set -e # Get tree-sitter-grammar -TS_CRATE=$1 +TS_CRATE=`grep $1 Cargo.toml | tr -d ' '` # Disable/Enable CI flag RUN_CI="no"