cursive/update_doc.sh
2016-07-14 22:53:16 -07:00

12 lines
218 B
Bash
Executable File

set -e
cargo doc
FROM=$(git rev-parse --short HEAD)
git checkout gh-pages
git fetch && git rebase origin/gh-pages
rsync -a target/doc/ .
git add .
git commit -m "Update doc for ${FROM}"
# git push
git checkout master