Swiftgram/docs/build.sh
Nadine Salter f83f113493 Documentation.
Generated with jekyll & appledoc.  Image assets are temporary.
2014-10-07 19:31:46 -07:00

22 lines
391 B
Bash
Executable File

#!/bin/sh
set -e
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 \
../AsyncDisplayKit/*.h
mv appledoc/html htdocs/appledoc
rmdir appledoc