File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ This document contains information about common development tasks.
77[ Install Rust] ( https://www.rust-lang.org/tools/install ) , then run:
88
99``` bash
10- cargo build --release
10+ (cd extractor && cargo build --release)
1111```
1212
1313## Generating the database schema and QL library
@@ -16,7 +16,7 @@ The generated `ql/lib/ruby.dbscheme` and `ql/lib/codeql/ruby/ast/internal/TreeSi
1616
1717``` bash
1818# Run the generator
19- cargo run --release -p ruby- generator -- --dbscheme ql/lib/ruby.dbscheme --library ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
19+ (cd extractor && cargo run --release --bin generator -- --dbscheme ../ ql/lib/ruby.dbscheme --library ../ ql/lib/codeql/ruby/ast/internal/TreeSitter.qll)
2020# Then auto-format the QL library
2121codeql query format -i ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
2222```
You can’t perform that action at this time.
0 commit comments