]> git.lizzy.rs Git - rust.git/blobdiff - pre_publish.sh
Merge pull request #3279 from phansch/fix_fp_in_fn_to_numeric_cast_with_truncation
[rust.git] / pre_publish.sh
index ee8e51cda6b7bcf6c3ff0ac495a97cd22d75aad1..fc7ae212fcff515607920bd9aa6764822fa56e91 100755 (executable)
@@ -1,15 +1,19 @@
 #!/bin/bash
 
-set -e
-
-./util/update_lints.py
+# Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
+# file at the top-level directory of this distribution and at
+# http://rust-lang.org/COPYRIGHT.
+#
+# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+# option. This file may not be copied, modified, or distributed
+# except according to those terms.
 
-git status --short | sort | grep -v README.md | grep -v helper.txt > helper.txt
 
-# abort if the files differ
-diff "publish.files" "helper.txt"
+set -e
 
-rm helper.txt
+./util/update_lints.py
 
 # add all changed files
 git add .
@@ -17,7 +21,13 @@ 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."