2017-02-14 10:22:21 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
./util/update_lints.py
|
|
|
|
|
2017-02-16 08:49:47 +00:00
|
|
|
# add all changed files
|
|
|
|
git add .
|
2017-02-17 12:27:57 +00:00
|
|
|
git commit -m "Bump the version"
|
2017-02-16 08:49:47 +00:00
|
|
|
|
|
|
|
set +e
|
|
|
|
|
2018-07-25 20:49:25 +00:00
|
|
|
echo "Running \`cargo fmt\`.."
|
|
|
|
|
2017-02-16 08:49:47 +00:00
|
|
|
cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
|
|
|
|
cargo fmt -- --write-mode=overwrite
|
|
|
|
|
2018-07-25 20:49:25 +00:00
|
|
|
echo "Running tests to make sure \`cargo fmt\` did not break anything.."
|
|
|
|
|
|
|
|
cargo test
|
|
|
|
|
|
|
|
echo "If the tests passed, review and commit the formatting changes and remember to add a git tag."
|