зеркало из https://github.com/nextcloud/circles.git
21 строка
490 B
Bash
Executable File
21 строка
490 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
BUILD_DIR=build/docs
|
|
|
|
[ -e phpDocumentor.phar ] || wget https://phpdoc.org/phpDocumentor.phar
|
|
|
|
mkdir -p "$BUILD_DIR"
|
|
|
|
php phpDocumentor.phar \
|
|
-t "$BUILD_DIR" \
|
|
-d "lib/Api" \
|
|
-d "lib/Exceptions" \
|
|
-d "lib/Model" \
|
|
-d "lib/Service" \
|
|
-d "lib/Tools" \
|
|
-d "lib/*.php" \
|
|
--title="Nextcloud Circles API"
|
|
|
|
touch "$BUILD_DIR/.nojekyll"
|