mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
23 lines
440 B
Bash
Executable File
23 lines
440 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
./util/update_lints.py
|
|
|
|
# add all changed files
|
|
git add .
|
|
git commit -m "Bump the version"
|
|
|
|
set +e
|
|
|
|
echo "Running \`cargo fmt\`.."
|
|
|
|
cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
|
|
cargo fmt -- --write-mode=overwrite
|
|
|
|
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."
|