cursive/update_doc.sh

11 lines
178 B
Bash
Raw Normal View History

2016-06-25 20:51:48 +00:00
set -e
cargo doc
FROM=$(git rev-parse --short HEAD)
git checkout gh-pages
rsync -a target/doc/ .
git add .
git commit -m "Update doc for ${FROM}"
# git push
git checkout master