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.
7
7
[ Install Rust] ( https://www.rust-lang.org/tools/install ) , then run:
8
8
9
9
``` bash
10
- cargo build --release
10
+ (cd extractor && cargo build --release)
11
11
```
12
12
13
13
## 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
16
16
17
17
``` bash
18
18
# 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)
20
20
# Then auto-format the QL library
21
21
codeql query format -i ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
22
22
```
You can’t perform that action at this time.
0 commit comments