We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a7533c commit f624a1bCopy full SHA for f624a1b
ruby/scripts/create-extractor-pack.sh
@@ -8,10 +8,12 @@ else
8
echo "Unknown OS"
9
exit 1
10
fi
11
+cd "$(dirname "$0")/.."
12
13
(cd extractor && cargo build --release)
14
-BIN_DIR=extractor/target/release
15
+# we are in a cargo workspace rooted at the git checkout
16
+BIN_DIR=../target/release
17
"$BIN_DIR/codeql-extractor-ruby" generate --dbscheme ql/lib/ruby.dbscheme --library ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
18
19
codeql query format -i ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
0 commit comments