]> git.lizzy.rs Git - rust.git/blob - pre_publish.sh
Merge pull request #3265 from mikerite/fix-export
[rust.git] / pre_publish.sh
1 #!/bin/bash
2
3 # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4 # file at the top-level directory of this distribution and at
5 # http://rust-lang.org/COPYRIGHT.
6 #
7 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 # option. This file may not be copied, modified, or distributed
11 # except according to those terms.
12
13
14 set -e
15
16 ./util/update_lints.py
17
18 # add all changed files
19 git add .
20 git commit -m "Bump the version"
21
22 set +e
23
24 echo "Running \`cargo fmt\`.."
25
26 cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
27 cargo fmt -- --write-mode=overwrite
28
29 echo "Running tests to make sure \`cargo fmt\` did not break anything.."
30
31 cargo test
32
33 echo "If the tests passed, review and commit the formatting changes and remember to add a git tag."