mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
24 lines
435 B
Bash
Executable File
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
|