]> git.lizzy.rs Git - rust.git/blobdiff - pre_publish.sh
more Use->DropTemps fixes
[rust.git] / pre_publish.sh
index ee8e51cda6b7bcf6c3ff0ac495a97cd22d75aad1..3602f671e3dec5de2039bc0e48e3ee2a47ba15d3 100755 (executable)
@@ -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."