Further automate pre_publish.sh

This commit is contained in:
Philipp Hansch 2018-07-25 22:49:25 +02:00
parent fde487c1dc
commit f52dd2b8f7
No known key found for this signature in database
GPG key ID: B6FA06A6E0E2665B

View file

@ -17,7 +17,13 @@ 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."