Swiftgram/docs/build.sh
2014-10-14 18:08:29 -07:00

24 lines
435 B
Bash
Executable File

#!/bin/sh
set -e
HEADERS=`ls ../AsyncDisplayKit/*.h | grep -v Subclasses`
rm -rf htdocs appledoc
jekyll build --destination htdocs
appledoc \
--no-create-docset \
--create-html \
--exit-threshold 2 \
--no-repeat-first-par \
--project-name AsyncDisplayKit \
--project-company Facebook \
--company-id "com.facebook" \
--output appledoc \
$HEADERS
mv appledoc/html htdocs/appledoc
rmdir appledoc