mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
25 lines
489 B
Bash
Executable File
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
|