mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 06:28:42 +00:00
Merge pull request #2962 from phansch/further_automate_pre_publish
Further automate pre_publish.sh
This commit is contained in:
commit
d3f78d64bd
1 changed files with 7 additions and 8 deletions
|
@ -4,20 +4,19 @@ set -e
|
||||||
|
|
||||||
./util/update_lints.py
|
./util/update_lints.py
|
||||||
|
|
||||||
git status --short | sort | grep -v README.md | grep -v helper.txt | sort > helper.txt
|
|
||||||
|
|
||||||
# abort if the files differ
|
|
||||||
diff "publish.files" "helper.txt"
|
|
||||||
|
|
||||||
rm helper.txt
|
|
||||||
|
|
||||||
# add all changed files
|
# add all changed files
|
||||||
git add .
|
git add .
|
||||||
git commit -m "Bump the version"
|
git commit -m "Bump the version"
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
|
|
||||||
|
echo "Running \`cargo fmt\`.."
|
||||||
|
|
||||||
cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
|
cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
|
||||||
cargo fmt -- --write-mode=overwrite
|
cargo fmt -- --write-mode=overwrite
|
||||||
|
|
||||||
echo "remember to add a git tag and running 'cargo test' before committing the rustfmt changes"
|
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."
|
||||||
|
|
Loading…
Add table
Reference in a new issue