mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 17:37:22 +03:00
8 lines
190 B
Bash
Executable File
8 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for x in `find */src | grep '.rs$' | grep -v pb.rs | xargs`; do
|
|
~/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustfmt $x;
|
|
done
|
|
rm */src/*.bk -f;
|
|
rm */src/*/*.bk -f;
|