summaryrefslogtreecommitdiffstats
path: root/extra/update_gh-pages.sh
blob: 7981fa0a1b579ef0631cde5fa98f2635f9732819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

set -e -u -o pipefail

cd rust
cargo doc
mkdir -p /tmp/fatcat-ghpages
cp -r target/doc/fatcat target/doc/fatcat_api_spec /tmp/fatcat-ghpages
cd ..
git checkout gh-pages
mv fatcat fatcat.old_docs || true
mv fatcat_api_spec fatcat_api_spec.old_docs || true
mv /tmp/fatcat-ghpages/fatcat .
mv /tmp/fatcat-ghpages/fatcat_api_spec .
git add fatcat fatcat_api_spec
git commit -m "updating rendered manpage for github docs" || true
git checkout master
rm -r /tmp/fatcat-ghpages

echo "DONE"