Swiftgram/docs/build.sh
2014-10-17 14:50:42 -07:00

25 lines
489 B
Bash
Executable File

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