diff options
Diffstat (limited to 'extra')
-rwxr-xr-x[-rw-r--r--] | extra/update_gh-pages.sh | 4 |
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 |