[site] Tweak appledoc script.

This commit is contained in:
Nadine Salter 2014-10-14 18:08:29 -07:00
parent a8e9d75b6f
commit 9a8c2d078d

View File

@ -1,6 +1,8 @@
#!/bin/sh #!/bin/sh
set -e set -e
HEADERS=`ls ../AsyncDisplayKit/*.h | grep -v Subclasses`
rm -rf htdocs appledoc rm -rf htdocs appledoc
jekyll build --destination htdocs jekyll build --destination htdocs
@ -14,7 +16,7 @@ appledoc \
--project-company Facebook \ --project-company Facebook \
--company-id "com.facebook" \ --company-id "com.facebook" \
--output appledoc \ --output appledoc \
../AsyncDisplayKit/*.h $HEADERS
mv appledoc/html htdocs/appledoc mv appledoc/html htdocs/appledoc