You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
293 B
17 lines
293 B
#!/bin/bash
|
|
|
|
# Format all sources using rustfmt.
|
|
|
|
# Exit immediately on errors.
|
|
set -e
|
|
|
|
cd $(dirname "$0")
|
|
src=$(pwd)
|
|
|
|
# Make sure we can find rustfmt.
|
|
export PATH="$PATH:$HOME/.cargo/bin"
|
|
|
|
for crate in $(find "$src" -name Cargo.toml); do
|
|
cd $(dirname "$crate")
|
|
cargo fmt -- "$@"
|
|
done
|
|
|