X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=pre_publish.sh;h=3602f671e3dec5de2039bc0e48e3ee2a47ba15d3;hb=f195680edb1d0ba2c04bfd6ba4fccfca184e8dbe;hp=ee8e51cda6b7bcf6c3ff0ac495a97cd22d75aad1;hpb=19929790aab404612df9bd9e0acaeedad4a30133;p=rust.git diff --git a/pre_publish.sh b/pre_publish.sh index ee8e51cda6b..3602f671e3d 100755 --- a/pre_publish.sh +++ b/pre_publish.sh @@ -4,20 +4,19 @@ set -e ./util/update_lints.py -git status --short | sort | grep -v README.md | grep -v helper.txt > helper.txt - -# abort if the files differ -diff "publish.files" "helper.txt" - -rm helper.txt - # 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 "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."