Skip to content

Instantly share code, notes, and snippets.

@stig
Created September 2, 2010 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stig/561672 to your computer and use it in GitHub Desktop.
Save stig/561672 to your computer and use it in GitHub Desktop.
What I use to update json-framework's api docs
#!/bin/sh
set -x
DOCSET=$INSTALL_DIR/Docset/html
VERSION=$(agvtool mvers -terse1 | perl -pe 's/(\d\.\d+)(\.\d+)*/$1/')
apidir=$VERSION
latest=api
if ! test -f "$DOCSET/index.html" ; then
echo "$dir does not contain index.html"
exit 1
fi
status=$(git status -s)
if ! test -z $status ; then
echo "Checkout has uncommitted changes"
exit 1
fi
tmp=$(basename $0)
tmpdir=$(mktemp -d "/tmp/$tmp.XXXXXX")
cp -R $DOCSET/ $tmpdir
rm -rf $tmpdir/org.brautaset.JSON.docset
rm -f $tmpdir/Makefile
rm -f $tmpdir/*.xml
rm -f $tmpdir/*.plist
branch=$(git branch | awk '$1 == "*" { print $2 }' )
git checkout gh-pages
rm -f $latest
rm -rf $apidir
mv $tmpdir $apidir
ln -s $apidir $latest
git add -A
git commit -m "refresh api docs for v$VERSION"
git checkout $branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment