9 lines
133 B
Fish
9 lines
133 B
Fish
|
#!/bin/fish
|
||
|
# Build the project in debug mode.
|
||
|
|
||
|
cd tree-sitter-dust/
|
||
|
tree-sitter generate --no-bindings
|
||
|
|
||
|
cd ..
|
||
|
cargo build --release
|