mirror of
https://github.com/astral-sh/ruff
synced 2026-01-06 06:04:16 -05:00
9 lines
212 B
Bash
Executable File
9 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$(dirname "$0")")"
|
|
|
|
# rm ast/src/gen/*.rs
|
|
python ast/asdl_rs.py --ast-dir ast/src/gen/ --parser-dir parser/src/gen/ ast/Python.asdl
|
|
rustfmt ast/src/gen/*.rs parser/src/gen/*.rs
|