mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
11 lines
178 B
Bash
Executable File
11 lines
178 B
Bash
Executable File
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
|