rust-clippy/pre_publish.sh

24 lines
484 B
Bash
Raw Normal View History

#!/bin/bash
set -e
./util/update_lints.py
2017-05-19 15:02:29 +00:00
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 .
2017-02-17 12:27:57 +00:00
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"