mirror of
https://github.com/nextcloud/documentation.git
synced 2026-03-26 13:28:45 +07:00
Properly pass the branch to get-server-sources.sh
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
10
Makefile
10
Makefile
@@ -36,13 +36,13 @@ user-manual-de-pdf:
|
||||
@echo "User manual de build finished; PDF is updated"
|
||||
|
||||
api-docs: clean-api-docs
|
||||
cd build && sh get-server-sources.sh master
|
||||
cd build && sh get-server-sources.sh $(DRONE_BRANCH)
|
||||
mkdir -p developer_manual/api/
|
||||
cd build && composer install && composer update
|
||||
cd build && php generateApiDoc.php
|
||||
|
||||
icons-docs: clean-api-docs
|
||||
cd build && sh get-server-sources.sh master
|
||||
icons-docs: clean-icons-docs
|
||||
cd build && sh get-server-sources.sh $(DRONE_BRANCH)
|
||||
cd build && composer install && composer update
|
||||
cd build && php generateIconsDoc.php
|
||||
|
||||
@@ -50,7 +50,7 @@ clean: clean-api-docs clean-icons-docs
|
||||
rm -r admin_manual/_build developer_manual/_build user_manual/_build user_manual_de_/_build
|
||||
|
||||
clean-api-docs:
|
||||
-rm -r developer_manual/api/
|
||||
rm -rf developer_manual/api/
|
||||
|
||||
clean-icons-docs:
|
||||
-rm -r developer_manual/design/img/
|
||||
rm -rf developer_manual/design/img/
|
||||
|
||||
Reference in New Issue
Block a user