mirror of
https://github.com/astral-sh/ruff
synced 2026-01-08 15:14:19 -05:00
9 lines
255 B
Bash
Executable File
9 lines
255 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/ --module-file ../RustPython/vm/src/stdlib/ast/gen.rs ast/Python.asdl
|
|
rustfmt ast/src/gen/*.rs ../RustPython/vm/src/stdlib/ast/gen.rs
|