aboutsummaryrefslogtreecommitdiffstats
path: root/extra/update_gh-pages.sh
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-09-13 17:16:13 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-09-13 17:21:01 -0700
commit2309a31b5c939a784301c145f3c23911f03e3d4a (patch)
tree7d90a1744b42840235090c038002ce84fccd9513 /extra/update_gh-pages.sh
parent3ce76c2e3ee6f45ba191183eb141c542dd64c9cb (diff)
downloadfatcat-2309a31b5c939a784301c145f3c23911f03e3d4a.tar.gz
fatcat-2309a31b5c939a784301c145f3c23911f03e3d4a.zip
fix gh-pages update script
Diffstat (limited to 'extra/update_gh-pages.sh')
-rwxr-xr-x[-rw-r--r--]extra/update_gh-pages.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/update_gh-pages.sh b/extra/update_gh-pages.sh
index 9f08b8a3..a6ac1b59 100644..100755
--- a/extra/update_gh-pages.sh
+++ b/extra/update_gh-pages.sh
@@ -5,11 +5,11 @@ set -e -u -o pipefail
cd rust
cargo doc
mkdir -p /tmp/fatcat-ghpages
-cp -r release/doc/fatcat release/doc/fatact_api_spec /tmp/fatcat-ghpages
+cp -r target/doc/fatcat target/doc/fatcat_api_spec /tmp/fatcat-ghpages
cd ..
git checkout gh-pages
mv /tmp/fatcat-ghpages/* .
-git add -u fatcat fatact_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