22 lines
604 B
Bash
22 lines
604 B
Bash
#!/bin/bash
|
|
set -e
|
|
if [ -d ./build-tools ]; then
|
|
targets=(
|
|
"Cargo.toml"
|
|
"sea-schema-derive/Cargo.toml"
|
|
)
|
|
|
|
for target in "${targets[@]}"; do
|
|
echo "cargo +nightly fmt --manifest-path ${target} --all"
|
|
cargo +nightly fmt --manifest-path "${target}" --all
|
|
done
|
|
|
|
tests=(`find tests -type f -name 'Cargo.toml'`)
|
|
for example in "${tests[@]}"; do
|
|
echo "cargo +nightly fmt --manifest-path ${example} --all"
|
|
cargo +nightly fmt --manifest-path "${example}" --all
|
|
done
|
|
else
|
|
echo "Please execute this script from the repository root."
|
|
fi
|