From 2309a31b5c939a784301c145f3c23911f03e3d4a Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 13 Sep 2018 17:16:13 -0700 Subject: fix gh-pages update script --- extra/update_gh-pages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 extra/update_gh-pages.sh (limited to 'extra/update_gh-pages.sh') diff --git a/extra/update_gh-pages.sh b/extra/update_gh-pages.sh old mode 100644 new mode 100755 index 9f08b8a3..a6ac1b59 --- 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 -- cgit v1.2.3