diff options
Diffstat (limited to 'build/phpDocumentor.sh')
-rwxr-xr-x | build/phpDocumentor.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/build/phpDocumentor.sh b/build/phpDocumentor.sh index 7c70224c76d..452f756aecc 100755 --- a/build/phpDocumentor.sh +++ b/build/phpDocumentor.sh @@ -1,11 +1,10 @@ #!/bin/bash -# Use a cached version of phpDocumentor for now since there is no release yet -# and the github actions artifacts might disappear -# This phar is downloaded from https://github.com/phpDocumentor/phpDocumentor/actions/runs/221599704 +# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: AGPL-3.0-or-later -wget https://bitgrid.net/~jus/phpDocumentor.phar +wget https://phpdoc.org/phpDocumentor.phar mkdir -p api/ -php7.4 phpDocumentor.phar -t "./api" -d "./lib/public" --title="Nextcloud PHP API ($BRANCH)" +php phpDocumentor.phar --target=./api --directory=./lib/public --title="Nextcloud PHP API ($BRANCH)" |