rust-clippy/pre_publish.sh
2017-05-19 17:02:29 +02:00

23 lines
484 B
Bash
Executable file

#!/bin/bash
set -e
./util/update_lints.py
git status --short | sort | grep -v README.md | grep -v helper.txt | sort > 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
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"