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

# Note: this script is BROKEN; the resulting docs don't have javascript search,
# throw a javascript error, and don't include private/internal docs. Not a
# priority right now.

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"